48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
|
import Model from 'ember-data/model';
|
||
|
import attr from 'ember-data/attr';
|
||
|
import writable from 'consul-ui/utils/model/writable';
|
||
|
|
||
|
export const PRIMARY_KEY = 'uid';
|
||
|
export const SLUG_KEY = 'AccessorID';
|
||
|
|
||
|
const model = Model.extend({
|
||
|
[PRIMARY_KEY]: attr('string'),
|
||
|
[SLUG_KEY]: attr('string'),
|
||
|
SecretID: attr('string'),
|
||
|
// Legacy
|
||
|
Type: attr('string'),
|
||
|
Name: attr('string', {
|
||
|
defaultValue: '',
|
||
|
}),
|
||
|
Rules: attr('string'),
|
||
|
// End Legacy
|
||
|
Legacy: attr('boolean'),
|
||
|
Description: attr('string', {
|
||
|
defaultValue: '',
|
||
|
}),
|
||
|
Datacenter: attr('string'),
|
||
|
Local: attr('boolean'),
|
||
|
Policies: attr({
|
||
|
defaultValue: function() {
|
||
|
return [];
|
||
|
},
|
||
|
}),
|
||
|
CreateTime: attr('date'),
|
||
|
CreateIndex: attr('number'),
|
||
|
ModifyIndex: attr('number'),
|
||
|
});
|
||
|
// Name and Rules is only for legacy tokens
|
||
|
export const ATTRS = writable(model, [
|
||
|
'Name',
|
||
|
'Rules',
|
||
|
'Type',
|
||
|
'Local',
|
||
|
'Description',
|
||
|
'Policies',
|
||
|
// SecretID isn't writable but we need it to identify an
|
||
|
// update via the old API, see TokenAdapter dataForRequest
|
||
|
'SecretID',
|
||
|
'AccessorID',
|
||
|
]);
|
||
|
export default model;
|