This commit is contained in:
@@ -48,6 +48,7 @@ CURRENT TODOs
|
||||
SHELL / NAV / MENUS / LAYOUT
|
||||
|
||||
|
||||
TODO: Move user locale and set login password into"user settings" single sub menu, set pw is too rare to be surfaced on the main nav panel
|
||||
|
||||
TODO: Change api docs regarding using api explorer, no longer necessary to put Bearer in the string
|
||||
|
||||
|
||||
@@ -102,21 +102,30 @@ export default function initialize() {
|
||||
key: key++
|
||||
});
|
||||
|
||||
//USER LOCALE
|
||||
//USER SETTINGS
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("Locale"),
|
||||
icon: "language",
|
||||
route: "/home-locale",
|
||||
title: window.$gz.locale.get("UserSettings"),
|
||||
icon: "user-cog",
|
||||
route: "/home-user-settings",
|
||||
key: key++
|
||||
});
|
||||
|
||||
//SET LOGIN
|
||||
sub.push({
|
||||
title: window.$gz.locale.get("SetLoginPassword"),
|
||||
icon: "key",
|
||||
route: "/home-password",
|
||||
key: key++
|
||||
});
|
||||
//Moved these two into user settings
|
||||
// //USER LOCALE
|
||||
// sub.push({
|
||||
// title: window.$gz.locale.get("Locale"),
|
||||
// icon: "language",
|
||||
// route: "/home-locale",
|
||||
// key: key++
|
||||
// });
|
||||
|
||||
// //SET LOGIN
|
||||
// sub.push({
|
||||
// title: window.$gz.locale.get("SetLoginPassword"),
|
||||
// icon: "key",
|
||||
// route: "/home-password",
|
||||
// key: key++
|
||||
// });
|
||||
|
||||
//USER NOTIFICATION SUBSCRIPTIONS
|
||||
if (
|
||||
|
||||
@@ -51,6 +51,7 @@ export default {
|
||||
"Dashboard",
|
||||
"Schedule",
|
||||
"MemoList",
|
||||
"UserSettings",
|
||||
"Locale",
|
||||
"SetLoginPassword",
|
||||
"NotifySubscriptionList",
|
||||
|
||||
@@ -101,6 +101,12 @@ export default new Router({
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "home" */ "./views/home-reminders.vue")
|
||||
},
|
||||
{
|
||||
path: "/home-user-settings",
|
||||
name: "home-user-settings",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "home" */ "./views/home-user-settings.vue")
|
||||
},
|
||||
{
|
||||
path: "/home-locale",
|
||||
name: "home-locale",
|
||||
|
||||
Reference in New Issue
Block a user