diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 6573fbea..e9c19bd3 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -59,7 +59,8 @@ todo: if dashboard view is empty should be a string displayed saying nothing sel - +todo: popup warning box error: Could not find one or more icon(s) iconName: "exclamation" prefix: "fas" + I think maybe this is a built in vuetify icon? diff --git a/ayanova/src/api/dash-registry.js b/ayanova/src/api/dash-registry.js index 759bbaaf..c9a35f6e 100644 --- a/ayanova/src/api/dash-registry.js +++ b/ayanova/src/api/dash-registry.js @@ -13,6 +13,54 @@ export default { dashSalesOnlyTest: { roles: [role.SalesFull, role.SalesLimited], title: "Sales only test item" + }, + dashBizOnlyTest1: { + roles: [role.BizAdminFull, role.BizAdminLimited], + title: "1Biz only test item" + }, + dashTechOnlyTest1: { + roles: [role.TechFull, role.TechLimited], + title: "1Tech only test item" + }, + dashSalesOnlyTest1: { + roles: [role.SalesFull, role.SalesLimited], + title: "1Sales only test item" + }, + dashBizOnlyTest2: { + roles: [role.BizAdminFull, role.BizAdminLimited], + title: "2Biz only test item" + }, + dashTechOnlyTest2: { + roles: [role.TechFull, role.TechLimited], + title: "2Tech only test item" + }, + dashSalesOnlyTest2: { + roles: [role.SalesFull, role.SalesLimited], + title: "2Sales only test item" + }, + dashBizOnlyTest3: { + roles: [role.BizAdminFull, role.BizAdminLimited], + title: "3Biz only test item" + }, + dashTechOnlyTest3: { + roles: [role.TechFull, role.TechLimited], + title: "3Tech only test item" + }, + dashSalesOnlyTest3: { + roles: [role.SalesFull, role.SalesLimited], + title: "3Sales only test item" + }, + dashBizOnlyTest4: { + roles: [role.BizAdminFull, role.BizAdminLimited], + title: "4Biz only test item" + }, + dashTechOnlyTest4: { + roles: [role.TechFull, role.TechLimited], + title: "4Tech only test item" + }, + dashSalesOnlyTest: { + roles: [role.SalesFull, role.SalesLimited], + title: "4Sales only test item" } }, availableItems() { diff --git a/ayanova/src/views/home-dashboard.vue b/ayanova/src/views/home-dashboard.vue index 54f30408..ab74035e 100644 --- a/ayanova/src/views/home-dashboard.vue +++ b/ayanova/src/views/home-dashboard.vue @@ -1,6 +1,45 @@