2019-08-05 15:00:21 +02:00
|
|
|
import { AppConfig } from '../../core/definitions/app-config';
|
2020-05-14 10:12:22 +02:00
|
|
|
import { Permission } from 'app/core/core-services/operator.service';
|
2018-11-09 13:44:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Config object for history.
|
|
|
|
* Hooks into the navigation.
|
|
|
|
*/
|
|
|
|
export const HistoryAppConfig: AppConfig = {
|
|
|
|
name: 'history',
|
|
|
|
mainMenuEntries: [
|
|
|
|
{
|
|
|
|
route: '/history',
|
|
|
|
displayName: 'History',
|
|
|
|
icon: 'history',
|
|
|
|
weight: 1200,
|
2020-05-14 10:12:22 +02:00
|
|
|
permission: Permission.coreCanSeeHistory
|
2018-11-09 13:44:39 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|