- Billettera
- Lista Ingressi - Send a Tutti la propria Lavagna.
This commit is contained in:
@@ -11,6 +11,7 @@ const functionality: IFunctionality = {
|
||||
PWA: false,
|
||||
SHOW_USER_MENU: true, // Cambiare con true
|
||||
SHOW_PROFILE: true,
|
||||
SHOW_REG_BUTTON: false,
|
||||
ENABLE_REGISTRATION: true, // Cambiare con true
|
||||
ENABLE_REG_AYNI: true,
|
||||
SHOW_NEWSLETTER: false,
|
||||
@@ -266,28 +267,39 @@ const baseroutes: IListRoutes[] = [
|
||||
order: 20,
|
||||
path: '/signup/:invited',
|
||||
materialIcon: 'how_to_reg',
|
||||
name: 'pages.presentazione',
|
||||
name: 'pages.presentazione2',
|
||||
component: () => import('@/root/intro/intro.vue'),
|
||||
inmenu: false,
|
||||
infooter: true,
|
||||
infooter: false,
|
||||
separator: false
|
||||
},
|
||||
{
|
||||
active: false,
|
||||
active: true,
|
||||
order: 30,
|
||||
path: '/intro',
|
||||
materialIcon: 'how_to_reg',
|
||||
name: 'pages.presentazione',
|
||||
component: () => import('@/root/intro/intro.vue'),
|
||||
meta: {requiresAuth: true},
|
||||
inmenu: true,
|
||||
infooter: true
|
||||
},
|
||||
{
|
||||
active: false,
|
||||
order: 40,
|
||||
path: '/testimonial',
|
||||
materialIcon: 'fas fa-comments',
|
||||
name: 'pages.testimonial',
|
||||
component: () => import('@/root/testimonianze/testimonianze.vue'),
|
||||
inmenu: true,
|
||||
infooter: true,
|
||||
onlyif_logged: true
|
||||
onlyif_logged: false
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
path: '/separator',
|
||||
name: 'separator',
|
||||
order: 99,
|
||||
order: 50,
|
||||
isseparator: true,
|
||||
inmenu: true,
|
||||
},
|
||||
@@ -305,13 +317,24 @@ const baseroutes: IListRoutes[] = [
|
||||
{
|
||||
active: true,
|
||||
order: 110,
|
||||
path: '/invite',
|
||||
materialIcon: 'fas fa-user-plus',
|
||||
name: 'pages.invita',
|
||||
component: () => import('@/root/invite/invite.vue'),
|
||||
meta: {requiresAuth: true},
|
||||
inmenu: true,
|
||||
infooter: true
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
order: 120,
|
||||
path: '/profile',
|
||||
materialIcon: 'fas fa-user',
|
||||
name: 'pages.profile',
|
||||
component: () => import('@/views/user/profile/profile.vue'),
|
||||
meta: {requiresAuth: true},
|
||||
inmenu: true,
|
||||
infooter: true
|
||||
infooter: true,
|
||||
},
|
||||
{
|
||||
active: true,
|
||||
@@ -425,7 +448,7 @@ const baseroutes: IListRoutes[] = [
|
||||
path: '/signin',
|
||||
materialIcon: 'account_circle',
|
||||
name: 'pages.SignIn',
|
||||
component: () => import('@/views/login/signin/signin.vue'),
|
||||
component: () => import('@/views/login/signin_noreg/signin_noreg.vue'),
|
||||
inmenu: false,
|
||||
infooter: true
|
||||
},
|
||||
@@ -439,10 +462,11 @@ export const routes = baseroutes
|
||||
|
||||
const preLoadImages: IPreloadImages[] = [
|
||||
{ imgname: '../../statics/images/logo.png', alt: 'logo', mobile: false },
|
||||
{ imgname: '../../statics/images/gb.png', alt: 'flag gb', mobile: false },
|
||||
{ imgname: '../../statics/images/es.png', alt: 'flag es', mobile: false },
|
||||
// { imgname: '../../statics/images/fr.png', alt: 'flag fr', mobile: false },
|
||||
{ imgname: '../../statics/images/it.png', alt: 'flag it', mobile: false },
|
||||
{ imgname: '../../statics/icons/flag_gb.svg', alt: 'flag us', mobile: false },
|
||||
{ imgname: '../../statics/icons/flag_it.svg', alt: 'flag it', mobile: false },
|
||||
{ imgname: '../../statics/icons/flag_es.svg', alt: 'flag es', mobile: false },
|
||||
{ imgname: '../../statics/icons/flag_fr.svg', alt: 'flag fr', mobile: false },
|
||||
{ imgname: '../../statics/icons/flag_pt.svg', alt: 'flag pt', mobile: false },
|
||||
// { imgname: '../../statics/images/background.jpg', alt: 'corsi di formazione per operatori del massaggio del benessere', mobile: true },
|
||||
// { imgname: '../../statics/images/background2.jpg', alt: 'stanza con cuscini per seminario reiki', mobile: true },
|
||||
// { imgname: '../../statics/images/background3.jpg', alt: 'foto di gruppo seminaristi reiki', mobile: true },
|
||||
@@ -457,14 +481,17 @@ export function preloadedimages() {
|
||||
const arrLangUsed = [
|
||||
'it',
|
||||
'enUs',
|
||||
'es'
|
||||
'es',
|
||||
'pt',
|
||||
'fr'
|
||||
]
|
||||
|
||||
const lang_available: ILang[] = [
|
||||
{ label: 'Italiano', icon: 'fa-flag-it', value: 'it', image: '../statics/images/it.png', short: 'IT' },
|
||||
{ label: 'English', icon: 'fa-flag-us', value: 'enUs', image: '../statics/images/gb.png', short: 'EN' },
|
||||
{ label: 'Español', icon: 'fa-flag-es', value: 'es', image: '../statics/images/es.png', short: 'ES' },
|
||||
// { label: 'Français', icon: 'fa-facebook', value: 'fr', image: '../statics/images/fr.png', short: 'FR' }
|
||||
{ label: 'Italiano', icon: 'fa-flag-it', value: 'it', image: '../statics/icons/flag_it.svg', short: 'IT' },
|
||||
{ label: 'English', icon: 'fa-flag-us', value: 'enUs', image: '../statics/icons/flag_gb.svg', short: 'EN' },
|
||||
{ label: 'Español', icon: 'fa-flag-es', value: 'es', image: '../statics/icons/flag_es.svg', short: 'ES' },
|
||||
{ label: 'Português', icon: 'fa-flag-pt', value: 'pt', image: '../statics/icons/flag_pt.svg', short: 'PT' },
|
||||
{ label: 'Français', icon: 'fa-flag-fr', value: 'fr', image: '../statics/icons/flag_fr.svg', short: 'FR' }
|
||||
// { label: 'German', icon: 'fa-flag-de', value: 'de', image: '../statics/images/de.png', short: 'DE' },
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user