feat:add contactbook report & updated version of app in footer

This commit is contained in:
prafull-opensignlabs
2023-11-24 17:12:38 +05:30
parent e4f9152de8
commit 636910a78e
13 changed files with 303 additions and 98 deletions
@@ -198,6 +198,20 @@ export default function reportJson(id, userId) {
},
keys: ['Name', 'Note', 'Folder.Name', 'URL', 'ExtUserPtr.Name', 'Signers.Name'],
};
// contact book report
case '5KhaPr482K':
return {
reportName: 'Contactbook',
params: {
CreatedBy: {
__type: 'Pointer',
className: '_User',
objectId: currentUserId,
},
IsDeleted: { $ne: true },
},
keys: ['Name', 'Email', 'Phone'],
};
default:
return null;
}