- Creato Sito TerraDellaVisione

- Corretto Duplicazione Sito (es: da 1 a 14)
This commit is contained in:
Paolo Arena
2022-05-14 00:32:48 +02:00
parent 4beee58a42
commit 0bffc765b2
74 changed files with 4317 additions and 337 deletions

View File

@@ -536,13 +536,13 @@ export const colmyUserPeople = [
export const colmyUserGroup = [
// AddCol({ name: '_id', label_trans: 'reg.id' }),
AddCol({ name: 'title', label_trans: 'reg.name', required: true, noshowlabel: true, maxlength: 40 }),
AddCol({
name: 'groupname', label_trans: 'reg.groupname', required: true,
maxlength: 30,
allowchar: costanti.ALLOWCHAR_CODE,
showWhen: costanti.showWhen.NewRec + costanti.showWhen.InPage + costanti.showWhen.InEdit,
showWhen: costanti.showWhen.NewRec + costanti.showWhen.InPage,
}),
AddCol({ name: 'title', label_trans: 'reg.name', required: true, noshowlabel: true, maxlength: 40 }),
AddCol({
name: 'idCity',
label_trans: 'skill.city',

View File

@@ -80,7 +80,7 @@ export const toolsext = {
TABMAILINGLIST: 'mailinglist',
TABGROUPS: 'groups',
TABMYPAGE: 'mypage',
TABMYBOT: 'mybots',
TABMYBOT: 'bots',
TABCALZOOM: 'calzoom',
TABTEMPLEMAIL: 'templemail',
TABOPZEMAIL: 'opzemail',

View File

@@ -1369,6 +1369,14 @@ export const useGlobalStore = defineStore('GlobalStore', {
userStore.logout()
this.rightDrawerOpen = true
return false
} else {
// Sbianca cmq i dati
const token = localStorage.getItem(toolsext.localStorage.token)
if (token) {
userStore.logout()
this.rightDrawerOpen = true
return false
}
}
}
}