deb.open-vault/ui/lib/kmip/addon/controllers/scopes/index.js

16 lines
406 B
JavaScript
Raw Permalink Normal View History

2024-04-20 12:23:50 +00:00
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import ListController from 'core/mixins/list-controller';
import Controller from '@ember/controller';
import { computed } from '@ember/object';
import { getOwner } from '@ember/application';
export default Controller.extend(ListController, {
mountPoint: computed(function () {
return getOwner(this).mountPoint;
}),
});