/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import BaseAbility from './base'; import { inject as service } from '@ember/service'; export default class ZoneAbility extends BaseAbility { @service('env') env; get canRead() { return this.env.var('CONSUL_NSPACES_ENABLED'); } }