open-consul/ui/packages/consul-ui/app/models/nspace.js
John Cowen dc183b1786
ui: Restrict the viewing/editing of certain UI elements based on the users ACLs (#9687)
This commit use the internal authorize endpoint along wiht ember-can to further restrict user access to certain UI features and navigational elements depending on the users ACL token
2021-02-19 16:42:16 +00:00

24 lines
582 B
JavaScript

import Model, { attr } from '@ember-data/model';
export const PRIMARY_KEY = 'Name';
export const SLUG_KEY = 'Name';
export const NSPACE_KEY = 'Namespace';
export default class Nspace extends Model {
@attr('string') uid;
@attr('string') Name;
@attr('number') SyncTime;
@attr('string', { defaultValue: () => '' }) Description;
@attr({ defaultValue: () => [] }) Resources; // []
// TODO: Is there some sort of date we can use here
@attr('string') DeletedAt;
@attr({
defaultValue: () => ({
PolicyDefaults: [],
RoleDefaults: [],
}),
})
ACLs;
}