mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
8263879e6f
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
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
import Model, { attr } from '@ember-data/model';
|
|
|
|
export default class Permission extends Model {
|
|
@attr('string') Resource;
|
|
@attr('string') Segment;
|
|
@attr('string') Access;
|
|
@attr('boolean') Allow;
|
|
}
|