mirror of
https://github.com/status-im/consul.git
synced 2025-03-02 14:20:39 +00:00
26 lines
519 B
JavaScript
26 lines
519 B
JavaScript
|
import BaseAbility from './base';
|
||
|
import { inject as service } from '@ember/service';
|
||
|
|
||
|
export default class PartitionAbility extends BaseAbility {
|
||
|
@service('env') env;
|
||
|
|
||
|
resource = 'operator';
|
||
|
segmented = false;
|
||
|
|
||
|
get canManage() {
|
||
|
return this.canCreate;
|
||
|
}
|
||
|
|
||
|
get canDelete() {
|
||
|
return this.item.Name !== 'default' && super.canDelete;
|
||
|
}
|
||
|
|
||
|
get canChoose() {
|
||
|
return this.canUse && (this.partitions || []).length > 0;
|
||
|
}
|
||
|
|
||
|
get canUse() {
|
||
|
return this.env.var('CONSUL_PARTITIONS_ENABLED');
|
||
|
}
|
||
|
}
|