dc183b1786
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
240 B
JavaScript
9 lines
240 B
JavaScript
import BaseAbility from './base';
|
|
import { inject as service } from '@ember/service';
|
|
export default class AuthenticateAbility extends BaseAbility {
|
|
@service('env') env;
|
|
get can() {
|
|
return this.env.var('CONSUL_ACLS_ENABLED');
|
|
}
|
|
}
|