2017-12-15 21:39:18 +00:00
|
|
|
import { alias } from '@ember/object/computed';
|
2021-02-17 21:01:44 +00:00
|
|
|
import Model from '@ember-data/model';
|
|
|
|
import { attr } from '@ember-data/model';
|
|
|
|
import { hasMany } from '@ember-data/model';
|
2017-10-13 22:17:51 +00:00
|
|
|
|
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;
|
|
|
|
}
|