mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-27 05:31:40 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
27 lines
538 B
JavaScript
27 lines
538 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { service } from '@ember/service';
|
|
import Component from '@glimmer/component';
|
|
|
|
/**
|
|
* @module NotFound
|
|
* NotFound components are used to show a message that the route was not found.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <NotFound @model={{this.model}} />
|
|
* ```
|
|
* @param {object} model - routes model passed into the component.
|
|
*/
|
|
|
|
export default class NotFound extends Component {
|
|
@service router;
|
|
|
|
get path() {
|
|
return this.router.currentURL;
|
|
}
|
|
}
|