- pagine RISO

This commit is contained in:
Surya Paolo
2025-12-05 17:56:05 +01:00
parent a51bc5a8a2
commit 5d35930dc8
338 changed files with 11275 additions and 5578 deletions

View File

@@ -38,7 +38,7 @@ const firstPage = {
path: '/',
materialIcon: 'home',
name: 'pages.home',
component: () => import('@src/root/mainview/mainview.vue'),
component: () => import('@/root/mainview/mainview.vue'),
reqauth: false,
inmenu: true,
infooter: true,
@@ -54,7 +54,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/',
materialIcon: 'home',
name: 'pages.home',
component: () => import('@src/root/mainview/mainview.vue'),
component: () => import('@/root/mainview/mainview.vue'),
reqauth: false,
inmenu: true,
infooter: true,
@@ -65,7 +65,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/test',
materialIcon: 'fas fa-test',
name: 'mypages.test',
component: () => import('@src/views/testServer/testServer.vue'),
component: () => import('@/views/testServer/testServer.vue'),
inmenu: false,
infooter: false,
},
@@ -75,7 +75,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/test-lungo',
materialIcon: 'fas fa-test',
name: 'mypages.test_lungo',
component: () => import('@src/views/testLungo/testLungo.vue'),
component: () => import('@/views/testLungo/testLungo.vue'),
inmenu: false,
infooter: false,
},
@@ -85,7 +85,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/provapao',
materialIcon: 'fas fa-house-user',
name: 'mypages.provapao',
component: () => import('@src/root/provapao/provapao.vue'),
component: () => import('@/root/provapao/provapao.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -96,7 +96,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/circuits',
materialIcon: 'fas fa-coins',
name: 'mypages.circuits',
component: () => import('@src/views/user/mycircuits/mycircuits.vue'),
component: () => import('@/views/user/mycircuits/mycircuits.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -107,7 +107,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/events',
materialIcon: 'fas fa-bullhorn',
name: 'mypages.events',
component: () => import('@src/root/eventi/eventi.vue'),
component: () => import('@/root/eventi/eventi.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -118,7 +118,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/install_site',
materialIcon: 'fas fa-user',
name: 'pages.install_site',
component: () => import('@src/views/admin/install_site/install_site.vue'),
component: () => import('@/views/admin/install_site/install_site.vue'),
meta: { requiresAuth: true },
inmenu: false,
infooter: false,
@@ -129,7 +129,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/myprofile',
materialIcon: 'fas fa-user',
name: 'pages.profile',
component: () => import('@src/views/user/myprofile/myprofile.vue'),
component: () => import('@/views/user/myprofile/myprofile.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -140,7 +140,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/friends',
materialIcon: 'fas fa-user-friends',
name: 'mypages.iscritti',
component: () => import('@src/views/user/myfriends/myfriends.vue'),
component: () => import('@/views/user/myfriends/myfriends.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: true,
@@ -151,7 +151,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/groups',
materialIcon: 'fas fa-users',
name: 'mypages.groups',
component: () => import('@src/views/user/mygroups/mygroups.vue'),
component: () => import('@/views/user/mygroups/mygroups.vue'),
meta: { requiresAuth: true },
inmenu: true,
infooter: false,
@@ -162,7 +162,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/grp/:groupname',
materialIcon: 'fas fa-user',
name: 'proj.group2',
component: () => import('@src/views/user/mygroup/mygroup.vue'),
component: () => import('@/views/user/mygroup/mygroup.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -173,7 +173,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/circuit/:path',
materialIcon: 'fas fa-user',
name: 'proj.circuit2',
component: () => import('@src/views/user/mycircuit/mycircuit.vue'),
component: () => import('@/views/user/mycircuit/mycircuit.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -192,7 +192,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/mypage/:idBacheca',
materialIcon: 'fas fa-user',
name: 'pages.mypage2',
component: () => import('@src/views/user/mypagebacheca/mypagebacheca.vue'),
component: () => import('@/views/user/mypagebacheca/mypagebacheca.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -203,7 +203,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/myservice/:idSkill',
materialIcon: '',
name: 'pages.myservice2',
component: () => import('@src/views/user/myservice/myservice.vue'),
component: () => import('@/views/user/myservice/myservice.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -214,7 +214,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/myhosps/:idHosp',
materialIcon: '',
name: 'pages.myhosps2',
component: () => import('@src/views/user/mypagehosp/mypagehosp.vue'),
component: () => import('@/views/user/mypagehosp/mypagehosp.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -225,7 +225,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/mygood/:idGood',
materialIcon: '',
name: 'pages.mygood2',
component: () => import('@src/views/user/mypagegood/mypagegood.vue'),
component: () => import('@/views/user/mypagegood/mypagegood.vue'),
meta: { requiresAuth: true, newpage: true },
inmenu: false,
infooter: false,
@@ -236,7 +236,7 @@ function getDynamicPages(site: ISites): IListRoutes[] {
path: '/calendario-eventi',
materialIcon: 'event',
name: 'ris.calendario_eventi_riso',
component: () => import('@src/root/calendarioeventi/calendarioeventi.vue'),
component: () => import('@/root/calendarioeventi/calendarioeventi.vue'),
extraclass: 'isCalendar',
inmenu: false,
infooter: false