/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: BUSL-1.1 */ import Service from '@ember/service'; // this service tracks the path of the currently viewed secret mount // so that we can access that inside of engines where parent route params // are not accessible export default class SecretMountPath extends Service { currentPath = ''; update(path: string) { this.currentPath = path; } }