2019-08-05 15:00:21 +02:00
|
|
|
import { AppConfig } from '../../core/definitions/app-config';
|
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,
|
2019-02-21 11:40:56 +01:00
|
|
|
permission: 'core.can_see_history'
|
2018-11-09 13:44:39 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|