- Il circuito viene creato in automatico, quando scegli una provincia.

This commit is contained in:
Surya Paolo
2023-03-21 18:11:56 +01:00
parent 7482b65743
commit 5993112a8e
7 changed files with 225 additions and 58 deletions

View File

@@ -32,6 +32,7 @@ const webpush = require('web-push');
const i18n = require('i18n');
const FILELOG = 'filelog.txt';
const FILEEVENTS = 'logevents.txt';
const FILEMANAGERS = 'logmanagers.txt';
@@ -425,6 +426,8 @@ module.exports = {
SEP: '|',
USER_ADMIN_CIRCUITS: 'paoloar77',
TYPE_PROJECT: 1,
TYPE_TODO: 2,
@@ -1482,6 +1485,12 @@ module.exports = {
return '';
},
convertSpaces_ToUScore(mystr) {
if (mystr)
return mystr.replace(/\s+/g, '_');
return '';
},
convertHTMLtoText(myhtml) {
let msg = myhtml;
if (msg) {