mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-16 12:38:13 +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;
|
||
|
|
}
|