Pannello Utente

Aggiornamento Yarn
- Notifiche (1)
This commit is contained in:
Paolo Arena
2022-07-10 01:25:19 +02:00
parent c8324f0de4
commit ba99b72e69
10 changed files with 383 additions and 43 deletions

View File

@@ -569,6 +569,20 @@ module.exports = {
'options'];
},
allfieldSendNotif: function() {
return [
'type',
'userId',
'sender',
'dest',
'descr',
'datenotif',
'read',
'deleted',
'idapp',
'status'];
},
allfieldTodo: function() {
return [
'userId',
@@ -2912,4 +2926,12 @@ module.exports = {
});
},
removeAtChar(mystr) {
if (mystr && mystr[0] === '@'){
return mystr = mystr.substring(1);
}
return mystr;
},
};