mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-01 13:58:01 +00:00
10 lines
263 B
TypeScript
10 lines
263 B
TypeScript
![]() |
import Controller from '@ember/controller';
|
||
|
import { AppName } from '@datahub/shared/constants/global';
|
||
|
|
||
|
export default class ApplicationError extends Controller {
|
||
|
/**
|
||
|
* Name of the app being displayed on the Error page.
|
||
|
*/
|
||
|
appName: string = AppName;
|
||
|
}
|