mirror of
https://github.com/status-im/consul.git
synced 2025-01-17 09:11:28 +00:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
import BaseAbility from './base';
|
|
|
|
export default class OverviewAbility extends BaseAbility {
|
|
resource = 'operator';
|
|
segmented = false;
|
|
get canAccess() {
|
|
return this.canRead;
|
|
}
|
|
}
|