2017-12-15 21:39:18 +00:00
|
|
|
import { alias } from '@ember/object/computed';
|
2017-10-13 22:17:51 +00:00
|
|
|
import Model from 'ember-data/model';
|
|
|
|
import attr from 'ember-data/attr';
|
|
|
|
import { hasMany } from 'ember-data/relationships';
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class Token extends Model {
|
|
|
|
@attr('string') secret;
|
|
|
|
@attr('string') name;
|
|
|
|
@attr('boolean') global;
|
|
|
|
@attr('date') createTime;
|
|
|
|
@attr('string') type;
|
|
|
|
@hasMany('policy') policies;
|
|
|
|
@attr() policyNames;
|
2017-10-13 22:17:51 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@alias('id') accessor;
|
|
|
|
}
|