- added Aportador Solidario to registration
- added email_paypal and username_telegram
This commit is contained in:
@@ -2,7 +2,9 @@ const msg_website = {
|
|||||||
it: {
|
it: {
|
||||||
pages: {
|
pages: {
|
||||||
home: 'Home',
|
home: 'Home',
|
||||||
|
profile: 'Profilo',
|
||||||
SignUp: 'Registrazione',
|
SignUp: 'Registrazione',
|
||||||
|
SignUp2: 'Registrazione',
|
||||||
SignIn: 'Login',
|
SignIn: 'Login',
|
||||||
vreg: 'Verifica Reg',
|
vreg: 'Verifica Reg',
|
||||||
Test: 'Test',
|
Test: 'Test',
|
||||||
@@ -49,7 +51,9 @@ const msg_website = {
|
|||||||
es: {
|
es: {
|
||||||
pages: {
|
pages: {
|
||||||
home: 'Home',
|
home: 'Home',
|
||||||
SignUp: 'Registrazione',
|
profile: 'Perfil',
|
||||||
|
SignUp: 'Registro',
|
||||||
|
SignUp2: 'Registro',
|
||||||
SignIn: 'Login',
|
SignIn: 'Login',
|
||||||
vreg: 'Verifica Reg',
|
vreg: 'Verifica Reg',
|
||||||
Test: 'Test',
|
Test: 'Test',
|
||||||
@@ -86,9 +90,11 @@ const msg_website = {
|
|||||||
enUs: {
|
enUs: {
|
||||||
pages: {
|
pages: {
|
||||||
home: 'Home',
|
home: 'Home',
|
||||||
SignUp: 'Registrazione',
|
profile: 'Profile',
|
||||||
|
SignUp: 'Registration',
|
||||||
|
SignUp2: 'Registration',
|
||||||
SignIn: 'Login',
|
SignIn: 'Login',
|
||||||
vreg: 'Verifica Reg',
|
vreg: 'Check Registration',
|
||||||
Test: 'Test',
|
Test: 'Test',
|
||||||
Category: 'Categorie',
|
Category: 'Categorie',
|
||||||
Admin: 'Admin',
|
Admin: 'Admin',
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import { IFunctionality } from '@src/model/GlobalStore'
|
|||||||
const functionality: IFunctionality = {
|
const functionality: IFunctionality = {
|
||||||
PWA: false,
|
PWA: false,
|
||||||
SHOW_USER_MENU: true, // Cambiare con true
|
SHOW_USER_MENU: true, // Cambiare con true
|
||||||
|
SHOW_PROFILE: true,
|
||||||
ENABLE_REGISTRATION: false, // Cambiare con true
|
ENABLE_REGISTRATION: false, // Cambiare con true
|
||||||
SHOW_NEWSLETTER: false,
|
SHOW_NEWSLETTER: false,
|
||||||
SHOW_ONLY_POLICY: true,
|
SHOW_ONLY_POLICY: true,
|
||||||
@@ -19,6 +20,21 @@ const functionality: IFunctionality = {
|
|||||||
BOOKING_EVENTS: false
|
BOOKING_EVENTS: false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const routes_admin: IListRoutes[] = [
|
||||||
|
{
|
||||||
|
active: true,
|
||||||
|
path: '/admin/cfgserv',
|
||||||
|
materialIcon: 'event_seat',
|
||||||
|
name: 'pages.Admin',
|
||||||
|
component: () => import('@/views/admin/cfgServer/cfgServer.vue'),
|
||||||
|
level_parent: 0.0,
|
||||||
|
level_child: 0.5,
|
||||||
|
inmenu: true,
|
||||||
|
submenu: true,
|
||||||
|
onlyAdmin: true
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
const routes_newsletter: IListRoutes[] = [
|
const routes_newsletter: IListRoutes[] = [
|
||||||
{
|
{
|
||||||
active: true,
|
active: true,
|
||||||
@@ -170,16 +186,46 @@ const routes: IListRoutes[] = [
|
|||||||
inmenu: true,
|
inmenu: true,
|
||||||
infooter: true
|
infooter: true
|
||||||
},
|
},
|
||||||
/*
|
|
||||||
{
|
{
|
||||||
path: '/page',
|
active: true,
|
||||||
name: 'pages.scuolaoperatoreolistico',
|
path: '/profile',
|
||||||
materialIcon: 'school',
|
materialIcon: 'user',
|
||||||
component: () => import('@/root/page/page.vue'),
|
name: 'pages.profile',
|
||||||
|
component: () => import('@/views/user/profile/profile.vue'),
|
||||||
|
reqauth: false,
|
||||||
inmenu: true,
|
inmenu: true,
|
||||||
infooter: true
|
infooter: true
|
||||||
},
|
},
|
||||||
*/
|
{
|
||||||
|
active: true,
|
||||||
|
path: '/admin/newsletter/:idparam',
|
||||||
|
materialIcon: 'event',
|
||||||
|
name: 'pages.newsletter.menu',
|
||||||
|
component: () => import('@/rootgen/admin/newsletter/newsletter.vue'),
|
||||||
|
inmenu: false,
|
||||||
|
infooter: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
active: true,
|
||||||
|
path: '/404error',
|
||||||
|
materialIcon: 'fas fa-calendar-plus',
|
||||||
|
name: 'otherpages.error404',
|
||||||
|
component: () => import('@/root/My404page/My404page.vue'),
|
||||||
|
inmenu: false,
|
||||||
|
infooter: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
active: true,
|
||||||
|
path: '/admin',
|
||||||
|
materialIcon: 'fas fa-user-shield',
|
||||||
|
name: 'otherpages.admin.menu',
|
||||||
|
inmenu: true,
|
||||||
|
routes2: routes_admin,
|
||||||
|
solotitle: true,
|
||||||
|
infooter: true,
|
||||||
|
onlyAdmin: true
|
||||||
|
},
|
||||||
|
...routes_admin,
|
||||||
{
|
{
|
||||||
active: true,
|
active: true,
|
||||||
path: '/manage',
|
path: '/manage',
|
||||||
@@ -215,6 +261,16 @@ const routes: IListRoutes[] = [
|
|||||||
infooter: false,
|
infooter: false,
|
||||||
separator: false
|
separator: false
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
active: functionality.ENABLE_REGISTRATION,
|
||||||
|
path: '/signup/:invited',
|
||||||
|
materialIcon: 'how_to_reg',
|
||||||
|
name: 'pages.SignUp2',
|
||||||
|
component: () => import('@/views/login/signup/signup.vue'),
|
||||||
|
inmenu: false,
|
||||||
|
infooter: false,
|
||||||
|
separator: false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
active: true,
|
active: true,
|
||||||
path: '/signin',
|
path: '/signin',
|
||||||
|
|||||||
Reference in New Issue
Block a user