mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 05:31:10 +02:00
16 lines
401 B
JavaScript
16 lines
401 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import ListController from 'core/mixins/list-controller';
|
|
import Controller from '@ember/controller';
|
|
import { computed } from '@ember/object';
|
|
import { getOwner } from '@ember/owner';
|
|
|
|
export default Controller.extend(ListController, {
|
|
mountPoint: computed(function () {
|
|
return getOwner(this).mountPoint;
|
|
}),
|
|
});
|