feat: add library account screens

This commit is contained in:
Jovan Krunić
2022-01-31 08:53:46 +00:00
parent 863a3ffd48
commit 080e6fa3e8
29 changed files with 770 additions and 1 deletions

View File

@@ -21,6 +21,21 @@ export class NavigationService {
} catch (error) {
this.logger.error(`error from loading menu entries: ${error}`);
}
// TODO: move this menu item to the config (backend)
menu[1].items.unshift({
icon: 'library',
route: '/library-account',
title: 'library account',
translations: {
de: {
title: 'Bibliothekskonto',
},
en: {
title: 'Library account',
},
},
});
return menu;
}
}