Matthew Irish 6f89952767
Ember update (#5386)
Ember update - update ember-cli, ember-data, and ember to 3.4 series
2018-09-25 11:28:26 -05:00

26 lines
551 B
JavaScript

import { computed } from '@ember/object';
import DS from 'ember-data';
import AuthConfig from '../auth-config';
import fieldToAttrs from 'vault/utils/field-to-attrs';
const { attr } = DS;
export default AuthConfig.extend({
credentials: attr('string', {
editType: 'file',
}),
googleCertsEndpoint: attr('string'),
fieldGroups: computed(function() {
const groups = [
{ default: ['credentials'] },
{
'Google Cloud Options': ['googleCertsEndpoint'],
},
];
return fieldToAttrs(this, groups);
}),
});