This commit is contained in:
@@ -151,14 +151,6 @@ function initNavPanel() {
|
|||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
//HISTORY / MRU / ACTIVITY (personal)
|
|
||||||
sub.push({
|
|
||||||
title: "History",
|
|
||||||
icon: "$ayiHistory",
|
|
||||||
route: `/history/3/${window.$gz.store.state.userId}/true`,
|
|
||||||
key: key++
|
|
||||||
});
|
|
||||||
|
|
||||||
//SCHEDULE (personal)
|
//SCHEDULE (personal)
|
||||||
sub.push({
|
sub.push({
|
||||||
title: "Schedule",
|
title: "Schedule",
|
||||||
@@ -207,6 +199,14 @@ function initNavPanel() {
|
|||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//HISTORY / MRU / ACTIVITY (personal)
|
||||||
|
sub.push({
|
||||||
|
title: "History",
|
||||||
|
icon: "$ayiHistory",
|
||||||
|
route: `/history/3/${window.$gz.store.state.userId}/true`,
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
//HOME
|
//HOME
|
||||||
if (sub.length > 0) {
|
if (sub.length > 0) {
|
||||||
//Set homePage in store to dashboard
|
//Set homePage in store to dashboard
|
||||||
|
|||||||
@@ -129,6 +129,7 @@ export default {
|
|||||||
"Dashboard",
|
"Dashboard",
|
||||||
"Schedule",
|
"Schedule",
|
||||||
"MemoList",
|
"MemoList",
|
||||||
|
"ReviewList",
|
||||||
"UserSettings",
|
"UserSettings",
|
||||||
"SetLoginPassword",
|
"SetLoginPassword",
|
||||||
"NotifySubscriptionList",
|
"NotifySubscriptionList",
|
||||||
|
|||||||
@@ -125,6 +125,12 @@ export default new Router({
|
|||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "ay-common" */ "./views/home-reminders.vue")
|
import(/* webpackChunkName: "ay-common" */ "./views/home-reminders.vue")
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "/home-reviews",
|
||||||
|
name: "home-reviews",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "ay-common" */ "./views/home-reviews.vue")
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "/home-user-settings",
|
path: "/home-user-settings",
|
||||||
name: "home-user-settings",
|
name: "home-user-settings",
|
||||||
|
|||||||
@@ -35,6 +35,10 @@ describe("SMOKE", () => {
|
|||||||
cy.url().should("include", "/home-reminders");
|
cy.url().should("include", "/home-reminders");
|
||||||
cy.get("[data-cy=underconstruction]");
|
cy.get("[data-cy=underconstruction]");
|
||||||
|
|
||||||
|
cy.visit("/home-reviews");
|
||||||
|
cy.url().should("include", "/home-reviews");
|
||||||
|
cy.get("[data-cy=underconstruction]");
|
||||||
|
|
||||||
cy.visit("/home-user-settings");
|
cy.visit("/home-user-settings");
|
||||||
cy.url().should("include", "/home-user-settings");
|
cy.url().should("include", "/home-user-settings");
|
||||||
cy.get("[data-cy=emailAddress]");
|
cy.get("[data-cy=emailAddress]");
|
||||||
|
|||||||
Reference in New Issue
Block a user