added groups, stated adding object edit

This commit is contained in:
2023-07-10 11:13:50 +05:00
parent fc4b567c87
commit 387a0d135f
13 changed files with 354 additions and 77 deletions

View File

@ -120,8 +120,8 @@ module.exports.logs_file = (res)=>{
}
module.exports.get_uuid = (name = "") =>{
name = (name != "")? this.encrypt(name,"name"):"";
module.exports.get_uuid = (name = "/") =>{
if (name != "/") name = this.encrypt(name,"name");
let unid = uuid.v4() + '%%'+name+'#e'+(621);
return unid;
}