mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
Merge pull request #974 from OpenSignLabs/multiuser_issue
fix: not able to deactivate teams
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -17,7 +17,7 @@ const AddTeam = (props) => {
|
||||
const getTeamList = async () => {
|
||||
setIsLoader(true);
|
||||
try {
|
||||
const teams = await Parse.Cloud.run("getteams");
|
||||
const teams = await Parse.Cloud.run("getteams", { active: true });
|
||||
const teamRes = JSON.parse(JSON.stringify(teams));
|
||||
if (teamRes.length > 0) {
|
||||
const _teamRes = JSON.parse(JSON.stringify(teamRes));
|
||||
|
||||
@@ -35,7 +35,7 @@ const AddUser = (props) => {
|
||||
|
||||
const getTeamList = async () => {
|
||||
setFormdata((prev) => ({ ...prev, password: generatePassword(12) }));
|
||||
const teamRes = await Parse.Cloud.run("getteams");
|
||||
const teamRes = await Parse.Cloud.run("getteams", { active: true });
|
||||
if (teamRes.length > 0) {
|
||||
const _teamRes = JSON.parse(JSON.stringify(teamRes));
|
||||
setTeamList(_teamRes);
|
||||
|
||||
@@ -163,7 +163,7 @@ const TeamList = () => {
|
||||
setTeamList(newArray);
|
||||
try {
|
||||
await Parse.Cloud.run("updateteam", {
|
||||
IsActive: !IsActive,
|
||||
IsActive: !IsActive === false ? "false" : "true",
|
||||
TeamId: team.objectId
|
||||
});
|
||||
// console.log("teamRes ", teamRes);
|
||||
|
||||
@@ -145,7 +145,7 @@ const ReportTable = (props) => {
|
||||
try {
|
||||
const extUser = JSON.parse(localStorage.getItem("Extand_Class"))?.[0];
|
||||
if (extUser?.OrganizationId?.objectId) {
|
||||
const teamtRes = await Parse.Cloud.run("getteams");
|
||||
const teamtRes = await Parse.Cloud.run("getteams", { active: true });
|
||||
if (teamtRes.length > 0) {
|
||||
const _teamRes = JSON.parse(JSON.stringify(teamtRes));
|
||||
const formatedList = _teamRes.map((x) => ({
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
export default async function getTeams(request) {
|
||||
const activeTeams = request.params.active;
|
||||
if (!request?.user) {
|
||||
throw new Parse.Error(Parse.Error.INVALID_SESSION_TOKEN, 'User is not authenticated.');
|
||||
}
|
||||
@@ -18,7 +19,9 @@ export default async function getTeams(request) {
|
||||
className: 'contracts_Organizations',
|
||||
objectId: extUser.OrganizationId.objectId,
|
||||
});
|
||||
teamCls.equalTo('IsActive', true);
|
||||
if (activeTeams) {
|
||||
teamCls.equalTo('IsActive', true);
|
||||
}
|
||||
teamCls.descending('createdAt');
|
||||
const teamRes = await teamCls.find({ useMasterKey: true });
|
||||
if (teamRes && teamRes.length > 0) {
|
||||
|
||||
@@ -33,7 +33,8 @@ export default async function updateTeam(request) {
|
||||
updateteam.set('Name', Name);
|
||||
}
|
||||
if (IsActive) {
|
||||
updateteam.set('IsActive', IsActive);
|
||||
const active = IsActive === 'false' ? false : true;
|
||||
updateteam.set('IsActive', active);
|
||||
}
|
||||
const updateTeamRes = await updateteam.save(null, { useMasterKey: true });
|
||||
return updateTeamRes;
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
[{
|
||||
"_id": "lpm8ijrwod",
|
||||
"name": "contracts_Admin",
|
||||
"_wperm": [
|
||||
"*"
|
||||
],
|
||||
"_rperm": [
|
||||
"*"
|
||||
],
|
||||
"_acl": {
|
||||
"*": {
|
||||
"r": true,
|
||||
"w": true
|
||||
}
|
||||
},
|
||||
"_created_at": {
|
||||
"$date": "2023-09-19T09:25:20.205Z"
|
||||
},
|
||||
"_updated_at": {
|
||||
"$date": "2023-09-28T09:47:03.968Z"
|
||||
}
|
||||
},
|
||||
{
|
||||
"_id": "Bz90QJSYMw",
|
||||
"name": "contracts_Guest",
|
||||
"_wperm": [
|
||||
"ZhOmhqvw7S"
|
||||
],
|
||||
"_rperm": [
|
||||
"*",
|
||||
"ZhOmhqvw7S"
|
||||
],
|
||||
"_acl": {
|
||||
"ZhOmhqvw7S": {
|
||||
"w": true,
|
||||
"r": true
|
||||
},
|
||||
"*": {
|
||||
"r": true
|
||||
}
|
||||
},
|
||||
"_created_at": {
|
||||
"$date": "2023-10-20T07:56:10.094Z"
|
||||
},
|
||||
"_updated_at": {
|
||||
"$date": "2023-10-20T10:50:36.229Z"
|
||||
}
|
||||
},
|
||||
{
|
||||
"_id": "Tb14x04JK2",
|
||||
"name": "contracts_User",
|
||||
"_wperm": [
|
||||
"*"
|
||||
],
|
||||
"_rperm": [
|
||||
"*"
|
||||
],
|
||||
"_acl": {
|
||||
"*": {
|
||||
"r": true,
|
||||
"w": true
|
||||
}
|
||||
},
|
||||
"_created_at": {
|
||||
"$date": "2023-09-19T09:25:20.205Z"
|
||||
},
|
||||
"_updated_at": {
|
||||
"$date": "2023-10-20T06:54:09.836Z"
|
||||
}
|
||||
}]
|
||||
@@ -1,657 +0,0 @@
|
||||
[{
|
||||
"_id": "_Role",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"name": "string",
|
||||
"users": "relation<_User>",
|
||||
"roles": "relation<_Role>",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"name_1": {
|
||||
"name": 1
|
||||
},
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
},
|
||||
"class_permissions": {
|
||||
"get": {
|
||||
"*": true
|
||||
},
|
||||
"find": {
|
||||
"*": true
|
||||
},
|
||||
"count": {
|
||||
"*": true
|
||||
},
|
||||
"create": {
|
||||
"*": true
|
||||
},
|
||||
"update": {
|
||||
"*": true
|
||||
},
|
||||
"delete": {
|
||||
"*": true
|
||||
},
|
||||
"addField": {},
|
||||
"protectedFields": {
|
||||
"*": []
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"_id": "_Session",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"user": "*_User",
|
||||
"installationId": "string",
|
||||
"sessionToken": "string",
|
||||
"expiresAt": "date",
|
||||
"createdWith": "object",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"_id": "_User",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"username": "string",
|
||||
"email": "string",
|
||||
"emailVerified": "boolean",
|
||||
"authData": "object",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"phone_1": {
|
||||
"phone": 1
|
||||
},
|
||||
"username_1": {
|
||||
"username": 1
|
||||
},
|
||||
"case_insensitive_username": {
|
||||
"username": 1
|
||||
},
|
||||
"email_1": {
|
||||
"email": 1
|
||||
},
|
||||
"case_insensitive_email": {
|
||||
"email": 1
|
||||
},
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
},
|
||||
"class_permissions": {
|
||||
"get": {
|
||||
"*": true
|
||||
},
|
||||
"find": {
|
||||
"*": true
|
||||
},
|
||||
"count": {
|
||||
"*": true
|
||||
},
|
||||
"create": {
|
||||
"*": true
|
||||
},
|
||||
"update": {
|
||||
"*": true
|
||||
},
|
||||
"delete": {
|
||||
"*": true
|
||||
},
|
||||
"addField": {},
|
||||
"protectedFields": {
|
||||
"*": [
|
||||
"email"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": "string",
|
||||
"phone": "string",
|
||||
"ProfilePic": "string"
|
||||
},
|
||||
{
|
||||
"_id": "contracts_Contactbook",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"Phone": "string",
|
||||
"Email": "string",
|
||||
"Name": "string",
|
||||
"UserRole": "string",
|
||||
"UserId": "*_User",
|
||||
"CreatedBy": "*_User",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"TenantId": "*partners_Tenant",
|
||||
"TourStatus": "array"
|
||||
},
|
||||
{
|
||||
"_id": "contracts_Document",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"_metadata": {
|
||||
"fields_options": {
|
||||
"EnablePhoneOTP": {
|
||||
"required": "false"
|
||||
},
|
||||
"IsCompleted": {
|
||||
"required": "false",
|
||||
"defaultValue": false
|
||||
},
|
||||
"IsDeclined": {
|
||||
"required": "false",
|
||||
"defaultValue": false
|
||||
},
|
||||
"SendinOrder": {
|
||||
"required": "false",
|
||||
"defaultValue": false
|
||||
},
|
||||
"ExpiryDate": {
|
||||
"required": "false"
|
||||
},
|
||||
"Signers": {
|
||||
"required": "false"
|
||||
},
|
||||
"Name": {
|
||||
"required": "false"
|
||||
},
|
||||
"AgreementValidUntil": {
|
||||
"required": "false"
|
||||
},
|
||||
"URL": {
|
||||
"required": "false"
|
||||
},
|
||||
"RemindOnceInEvery": {
|
||||
"required": "false",
|
||||
"defaultValue": 5
|
||||
},
|
||||
"EnableEmailOTP": {
|
||||
"required": "false"
|
||||
},
|
||||
"AutomaticReminders": {
|
||||
"required": "false",
|
||||
"defaultValue": false
|
||||
},
|
||||
"SentToOthers": {
|
||||
"required": "false",
|
||||
"defaultValue": false
|
||||
},
|
||||
"TimeToCompleteDays": {
|
||||
"required": "false",
|
||||
"defaultValue": 15
|
||||
},
|
||||
"Recipients": {
|
||||
"required": "false"
|
||||
},
|
||||
"Type": {
|
||||
"required": "false"
|
||||
},
|
||||
"Description": {
|
||||
"required": "false"
|
||||
},
|
||||
"ExtUserPtr": {
|
||||
"required": "false"
|
||||
},
|
||||
"SignedUrl": {
|
||||
"required": "false"
|
||||
},
|
||||
"AuditTrail": {
|
||||
"required": "false"
|
||||
},
|
||||
"Placeholders": {
|
||||
"required": "false"
|
||||
},
|
||||
"Folder": {
|
||||
"required": "false"
|
||||
},
|
||||
"Note": {
|
||||
"required": false
|
||||
},
|
||||
"Clauses": {
|
||||
"required": false
|
||||
},
|
||||
"AgreementDelta": {
|
||||
"required": false
|
||||
}
|
||||
},
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
},
|
||||
"class_permissions": {
|
||||
"get": {
|
||||
"*": true
|
||||
},
|
||||
"find": {
|
||||
"*": true
|
||||
},
|
||||
"count": {
|
||||
"*": true
|
||||
},
|
||||
"create": {
|
||||
"*": true
|
||||
},
|
||||
"update": {
|
||||
"*": true
|
||||
},
|
||||
"delete": {
|
||||
"*": true
|
||||
},
|
||||
"addField": {},
|
||||
"protectedFields": {
|
||||
"*": []
|
||||
}
|
||||
}
|
||||
},
|
||||
"EnablePhoneOTP": "boolean",
|
||||
"IsCompleted": "boolean",
|
||||
"IsDeclined": "boolean",
|
||||
"SendinOrder": "boolean",
|
||||
"ExpiryDate": "date",
|
||||
"Signers": "array",
|
||||
"Name": "string",
|
||||
"AgreementValidUntil": "date",
|
||||
"URL": "string",
|
||||
"RemindOnceInEvery": "number",
|
||||
"EnableEmailOTP": "boolean",
|
||||
"AutomaticReminders": "boolean",
|
||||
"SentToOthers": "boolean",
|
||||
"TimeToCompleteDays": "number",
|
||||
"Recipients": "array",
|
||||
"Type": "string",
|
||||
"Description": "string",
|
||||
"ExtUserPtr": "*contracts_Users",
|
||||
"SignedUrl": "string",
|
||||
"AuditTrail": "array",
|
||||
"Placeholders": "array",
|
||||
"Folder": "*contracts_Document",
|
||||
"Note": "string",
|
||||
"CreatedBy": "*_User",
|
||||
"Clauses": "array",
|
||||
"AgreementDelta": "array"
|
||||
},
|
||||
{
|
||||
"_id": "contracts_Signature",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"_metadata": {
|
||||
"fields_options": {
|
||||
"SignatureName": {
|
||||
"required": "false"
|
||||
},
|
||||
"SignText": {
|
||||
"required": "false"
|
||||
},
|
||||
"ImageURL": {
|
||||
"required": "false"
|
||||
},
|
||||
"SignTextFont": {
|
||||
"required": "false"
|
||||
},
|
||||
"InitialsText": {
|
||||
"required": "false"
|
||||
},
|
||||
"InitialsFont": {
|
||||
"required": "false"
|
||||
},
|
||||
"UserId": {
|
||||
"required": false
|
||||
}
|
||||
},
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
},
|
||||
"class_permissions": {
|
||||
"get": {
|
||||
"*": true
|
||||
},
|
||||
"find": {
|
||||
"*": true
|
||||
},
|
||||
"count": {
|
||||
"*": true
|
||||
},
|
||||
"create": {
|
||||
"*": true
|
||||
},
|
||||
"update": {
|
||||
"*": true
|
||||
},
|
||||
"delete": {
|
||||
"*": true
|
||||
},
|
||||
"addField": {},
|
||||
"protectedFields": {
|
||||
"*": []
|
||||
}
|
||||
}
|
||||
},
|
||||
"SignatureName": "string",
|
||||
"SignText": "string",
|
||||
"ImageURL": "string",
|
||||
"SignTextFont": "string",
|
||||
"InitialsText": "string",
|
||||
"InitialsFont": "string",
|
||||
"Initials": "string",
|
||||
"UserId": "*_User"
|
||||
},
|
||||
{
|
||||
"_id": "contracts_Users",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"_metadata": {
|
||||
"fields_options": {
|
||||
"Name": {
|
||||
"required": "false"
|
||||
},
|
||||
"Phone": {
|
||||
"required": "false"
|
||||
},
|
||||
"JobTitle": {
|
||||
"required": "false"
|
||||
},
|
||||
"Email": {
|
||||
"required": "false"
|
||||
},
|
||||
"Company": {
|
||||
"required": "false"
|
||||
},
|
||||
"UserId": {
|
||||
"required": "false"
|
||||
},
|
||||
"TenantId": {
|
||||
"required": "false"
|
||||
},
|
||||
"TourStatus": {
|
||||
"required": false
|
||||
},
|
||||
"IsContactEntry": {
|
||||
"required": false,
|
||||
"defaultValue": false
|
||||
},
|
||||
"ShareWithTeam": {
|
||||
"required": false
|
||||
}
|
||||
},
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
},
|
||||
"class_permissions": {
|
||||
"get": {
|
||||
"*": true
|
||||
},
|
||||
"find": {
|
||||
"*": true
|
||||
},
|
||||
"count": {
|
||||
"*": true
|
||||
},
|
||||
"create": {
|
||||
"*": true
|
||||
},
|
||||
"update": {
|
||||
"*": true
|
||||
},
|
||||
"delete": {
|
||||
"*": true
|
||||
},
|
||||
"addField": {},
|
||||
"protectedFields": {
|
||||
"*": []
|
||||
}
|
||||
}
|
||||
},
|
||||
"Name": "string",
|
||||
"Phone": "string",
|
||||
"JobTitle": "string",
|
||||
"Email": "string",
|
||||
"Company": "string",
|
||||
"UserId": "*_User",
|
||||
"TenantId": "*partners_Tenant",
|
||||
"TourStatus": "array",
|
||||
"Plan": "object",
|
||||
"UserRole": "string",
|
||||
"Next_billing_date": "date",
|
||||
"Customer_id": "string",
|
||||
"Subscription_id": "string",
|
||||
"CreatedBy": "*_User",
|
||||
"IsContactEntry": "boolean",
|
||||
"ShareWithTeam": "boolean"
|
||||
},
|
||||
{
|
||||
"_id": "partners_DataFiles",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"FileSize": "number",
|
||||
"FileUrl": "string",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"_id": "partners_Subscriptions",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date"
|
||||
},
|
||||
{
|
||||
"_id": "partners_Tenant",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"EmailAddress": "string",
|
||||
"TenantName": "string",
|
||||
"IsActive": "boolean",
|
||||
"CreatedBy": "*_User",
|
||||
"ContactNumber": "string",
|
||||
"UserId": "*_User",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"_id": "partners_TenantCredits",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"usedStorage": "number",
|
||||
"PartnersTenant": "*partners_Tenant",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"_id": "w_appinfo",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"orgId": "string",
|
||||
"forgetpassFormId": "string",
|
||||
"mainformObjId": "string",
|
||||
"applogo": "string",
|
||||
"fbAppId": "string",
|
||||
"appname": "string",
|
||||
"loginFormId": "string",
|
||||
"baseurl": "string",
|
||||
"org_name": "string",
|
||||
"signUpFormId": "string",
|
||||
"defaultmenuid": "string",
|
||||
"version": "string",
|
||||
"formTitle": "string",
|
||||
"googleClietId": "string",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
},
|
||||
"class_permissions": {
|
||||
"get": {
|
||||
"*": true
|
||||
},
|
||||
"find": {
|
||||
"*": true
|
||||
},
|
||||
"count": {
|
||||
"*": true
|
||||
},
|
||||
"create": {
|
||||
"*": true
|
||||
},
|
||||
"update": {
|
||||
"*": true
|
||||
},
|
||||
"delete": {
|
||||
"*": true
|
||||
},
|
||||
"addField": {
|
||||
"*": true
|
||||
}
|
||||
},
|
||||
"fields_options": {
|
||||
"uploadUrl": {
|
||||
"required": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"class": "string",
|
||||
"LandingPageId": "string",
|
||||
"accessType": "string",
|
||||
"settings": "array",
|
||||
"appTitle": "string",
|
||||
"metaDescription": "string",
|
||||
"branding_image": "string",
|
||||
"fev_Icon": "string",
|
||||
"defaultRole": "string",
|
||||
"results": "array",
|
||||
"loginType": "string",
|
||||
"createdBy": "*_User",
|
||||
"domain": "string",
|
||||
"enableWebNotification": "boolean",
|
||||
"allowWhiteLabel": "boolean",
|
||||
"uploadUrl": "string"
|
||||
},
|
||||
{
|
||||
"_id": "w_dashboard",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"dbDescription": "string",
|
||||
"dbTitle": "string",
|
||||
"bgColor": "string",
|
||||
"rows": "array",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"appId": "*w_appinfo"
|
||||
},
|
||||
{
|
||||
"_id": "w_formV3",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"description": "string",
|
||||
"uiSchema": "object",
|
||||
"jsonSchema": "object",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"class": "string",
|
||||
"success_message": "string",
|
||||
"restrict_form_entry": "object",
|
||||
"send_email": "boolean",
|
||||
"restrict_form_access": "object",
|
||||
"email_template": "object",
|
||||
"form_permission": "string",
|
||||
"success_redirect": "string",
|
||||
"form_buttons": "object",
|
||||
"buttons": "object",
|
||||
"appId": "*w_appinfo",
|
||||
"rpTitle": "string",
|
||||
"rpDescription": "string",
|
||||
"rpType": "string",
|
||||
"bgColor": "string",
|
||||
"rows": "array",
|
||||
"redirect_id": "string",
|
||||
"formACL": "object",
|
||||
"userSchema": "object",
|
||||
"isRegisterForm": "boolean",
|
||||
"liveValidate": "boolean",
|
||||
"noValidate": "boolean",
|
||||
"validFunction": "string",
|
||||
"help": "object",
|
||||
"name": "string",
|
||||
"phone": "string",
|
||||
"email": "string",
|
||||
"password": "string",
|
||||
"username": "string",
|
||||
"role": "string",
|
||||
"helpText": "object",
|
||||
"helpTextForm": "object",
|
||||
"hideActionsAfter": "number",
|
||||
"rules": "array",
|
||||
"extraActions": "object",
|
||||
"persistentFields": "array"
|
||||
},
|
||||
{
|
||||
"_id": "w_menu",
|
||||
"objectId": "string",
|
||||
"updatedAt": "date",
|
||||
"createdAt": "date",
|
||||
"menuTitle": "string",
|
||||
"menuType": "string",
|
||||
"menuItems": "array",
|
||||
"_metadata": {
|
||||
"indexes": {
|
||||
"_id_": {
|
||||
"_id": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"appId": "*w_appinfo"
|
||||
}]
|
||||
File diff suppressed because one or more lines are too long
@@ -1,104 +0,0 @@
|
||||
[{
|
||||
"_id": "35KBoSgoAK",
|
||||
"rows": [
|
||||
{
|
||||
"columns": [
|
||||
{
|
||||
"colxs": "12",
|
||||
"colmd": "6",
|
||||
"collg": "6",
|
||||
"widget": {
|
||||
"type": "Card",
|
||||
"icon": "fas fa-signature",
|
||||
"bgColor": "#f0058e",
|
||||
"label": "Need your Signature",
|
||||
"description": null,
|
||||
"data": {
|
||||
"id": "e04ee9dc-932d-6b80-0202-703fd154eb74",
|
||||
"queryType": "",
|
||||
"class": "contracts_Document",
|
||||
"query": "where={\"$and\":[{\"AuditTrail.UserPtr\":{\"$ne\":{\"__type\":\"Pointer\",\"className\": \"contracts_Users\",\"objectId\":\"#objectId#\"}}},{\"AuditTrail.Activity\":{\"$ne\":\"Signed\"}}],\"Signers\":{\"$in\":[{\"__type\":\"Pointer\",\"className\":\"contracts_Users\",\"objectId\":\"#objectId#\"}]},\"IsDeclined\":{\"$ne\":true},\"IsCompleted\":{\"$ne\":true},\"Type\":{\"$ne\":\"Folder\"},\"Placeholders\":{\"$ne\":null},\"ExpiryDate\":{\"#*gt\":{\"__type\":\"#Date#\",\"iso\":\"#today#\"}}}&count=1",
|
||||
"key": "count",
|
||||
"Redirect_type": "Report",
|
||||
"Redirect_id": "4Hhwbp482K",
|
||||
"tourSection": "tourcard1",
|
||||
"tourMessage": "This card shows the aggregate count of documents that are awaiting your signature. Clicking on this card will seamlessly take you to the detailed list of such documents for your review and action."
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"colxs": "12",
|
||||
"colmd": "6",
|
||||
"collg": "6",
|
||||
"widget": {
|
||||
"type": "Card",
|
||||
"icon": "fas fa-sign-out-alt",
|
||||
"bgColor": "#g0058e",
|
||||
"label": "Out for signatures",
|
||||
"description": null,
|
||||
"data": {
|
||||
"id": "c1935cc0-28d4-3d73-b72a-8c1e3d18a17f",
|
||||
"queryType": "",
|
||||
"class": "contracts_Document",
|
||||
"query": "where={\"IsDeclined\":{\"$ne\":true},\"IsCompleted\":{\"$ne\":true},\"Type\":{\"$ne\":\"Folder\"},\"Placeholders\":{\"$ne\":null},\"ExpiryDate\":{\"#*gt\":{\"__type\":\"#Date#\",\"iso\":\"#today#\"}}}&include=Signers,AuditTrail.UserPtr",
|
||||
"key": "count",
|
||||
"Redirect_type": "Report",
|
||||
"Redirect_id": "1MwEuxLEkF",
|
||||
"tourSection": "tourcard2",
|
||||
"tourMessage": "This card indicates the total number of documents you've sent out for signatures. A single click on this card will navigate you to a comprehensive list of these documents, allowing you to monitor their status."
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"colxs": "12",
|
||||
"colmd": "6",
|
||||
"collg": "6",
|
||||
"widget": {
|
||||
"type": "report",
|
||||
"reportId": "5Go51Q7T8r",
|
||||
"data": {
|
||||
"tourSection": "tourreport1",
|
||||
"tourMessage": "Here lies a curated list of documents that are pending your signature. These are requests from other users that require your immediate attention for completion."
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"colxs": "12",
|
||||
"colmd": "6",
|
||||
"collg": "6",
|
||||
"widget": {
|
||||
"type": "report",
|
||||
"reportId": "d9k3UfYHBc",
|
||||
"data": {
|
||||
"tourSection": "tourreport2",
|
||||
"tourMessage": "This area displays all the documents you've dispatched for signatures from other parties. It serves as a real-time tracker for documents pending external approval."
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"colxs": "12",
|
||||
"colmd": "12",
|
||||
"collg": "12",
|
||||
"widget": {
|
||||
"type": "report",
|
||||
"reportId": "kC5mfynCi4",
|
||||
"data": {
|
||||
"tourSection": "tourreport3",
|
||||
"tourMessage": "In this section, you'll find your draft documents awaiting completion. These are the documents you've initiated but haven't yet finalized for sending."
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"_p_appId": "w_appinfo$aIPmIvMzGM",
|
||||
"dbTitle": "Dashboard",
|
||||
"dbDescription": null,
|
||||
"bgColor": "#ffffff",
|
||||
"_created_at": {
|
||||
"$date": "2023-09-04T13:17:26.707Z"
|
||||
},
|
||||
"_updated_at": {
|
||||
"$date": "2023-09-27T04:53:20.395Z"
|
||||
}
|
||||
}]
|
||||
@@ -1,290 +0,0 @@
|
||||
[
|
||||
{
|
||||
"_id": "H9vRfEYKhT",
|
||||
"_created_at": {
|
||||
"$date": "2023-09-04T14:04:00.669Z"
|
||||
},
|
||||
"_updated_at": {
|
||||
"$date": "2023-10-20T06:27:02.314Z"
|
||||
},
|
||||
"_p_appId": "w_appinfo$aIPmIvMzGM",
|
||||
"menuItems": [
|
||||
{
|
||||
"icon": "fas fa-tachometer-alt",
|
||||
"title": "Dashboard",
|
||||
"target": "",
|
||||
"pageType": "dashboard",
|
||||
"description": "",
|
||||
"objectId": "35KBoSgoAK"
|
||||
},
|
||||
{
|
||||
"icon": "far fa-newspaper",
|
||||
"title": "New Document",
|
||||
"target": "_self",
|
||||
"pageType": null,
|
||||
"description": null,
|
||||
"objectId": null,
|
||||
"children": [
|
||||
{
|
||||
"icon": "fas fa-pen-nib",
|
||||
"title": "Sign yourself",
|
||||
"target": "_self",
|
||||
"pageType": "form",
|
||||
"description": "",
|
||||
"objectId": "sHAnZphf69"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-file-signature",
|
||||
"title": "Request signatures",
|
||||
"target": "_self",
|
||||
"pageType": "form",
|
||||
"description": "",
|
||||
"objectId": "8mZzFxbG1z"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-folder",
|
||||
"title": "OpenSignDrive™",
|
||||
"target": "_self",
|
||||
"pageType": "mf",
|
||||
"description": "",
|
||||
"objectId": "remoteUrl=aHR0cHM6Ly9xaWstYWktb3JnLmdpdGh1Yi5pby9TaWduLU1pY3JvYXBwVjIvcmVtb3RlRW50cnkuanM=&moduleToLoad=AppRoutes&remoteName=signmicroapp/legadrive"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-address-card",
|
||||
"title": "Reports",
|
||||
"target": "_self",
|
||||
"pageType": null,
|
||||
"description": "",
|
||||
"objectId": null,
|
||||
"children": [
|
||||
{
|
||||
"icon": "fas fa-signature",
|
||||
"title": "Need your sign",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "4Hhwbp482K"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-tasks",
|
||||
"title": "In Progress",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "1MwEuxLEkF"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-check-circle",
|
||||
"title": "Completed",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "kQUoW4hUXz"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-edit",
|
||||
"title": "Drafts",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "ByHuevtCFY"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-times-circle",
|
||||
"title": "Declined",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "UPr2Fm5WY3"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-hourglass-end",
|
||||
"title": "Expired",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "zNqBHXHsYH"
|
||||
},
|
||||
{
|
||||
"icon": "fa-solid fa-address-book",
|
||||
"title": "Contactbook",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "5KhaPr482K"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-cog",
|
||||
"title": "Settings",
|
||||
"target": "_self",
|
||||
"pageType": null,
|
||||
"description": "",
|
||||
"objectId": null,
|
||||
"children": [
|
||||
{
|
||||
"icon": "fas fa-pen-fancy",
|
||||
"title": "My Signature",
|
||||
"target": "_self",
|
||||
"pageType": "mf",
|
||||
"description": "",
|
||||
"objectId": "remoteUrl=aHR0cHM6Ly9xaWstYWktb3JnLmdpdGh1Yi5pby9TaWduLU1pY3JvYXBwVjIvcmVtb3RlRW50cnkuanM=&moduleToLoad=AppRoutes&remoteName=signmicroapp/managesign"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"menuTitle": "Default Menu",
|
||||
"menuType": "Side Menu"
|
||||
},
|
||||
{
|
||||
"_id": "VPh91h0ZHk",
|
||||
"_created_at": {
|
||||
"$date": "2023-09-04T14:16:15.424Z"
|
||||
},
|
||||
"_updated_at": {
|
||||
"$date": "2023-10-20T06:25:59.660Z"
|
||||
},
|
||||
"_p_appId": "w_appinfo$aIPmIvMzGM",
|
||||
"menuItems": [
|
||||
{
|
||||
"icon": "fas fa-tachometer-alt",
|
||||
"title": "Dashboard",
|
||||
"target": "",
|
||||
"pageType": "dashboard",
|
||||
"description": "",
|
||||
"objectId": "35KBoSgoAK"
|
||||
},
|
||||
{
|
||||
"icon": "far fa-newspaper",
|
||||
"title": "New Document",
|
||||
"target": "_self",
|
||||
"pageType": null,
|
||||
"description": null,
|
||||
"objectId": null,
|
||||
"children": [
|
||||
{
|
||||
"icon": "fas fa-pen-nib",
|
||||
"title": "Sign yourself",
|
||||
"target": "_self",
|
||||
"pageType": "form",
|
||||
"description": "",
|
||||
"objectId": "sHAnZphf69"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-file-signature",
|
||||
"title": "Request signatures",
|
||||
"target": "_self",
|
||||
"pageType": "form",
|
||||
"description": "",
|
||||
"objectId": "8mZzFxbG1z"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-folder",
|
||||
"title": "OpenSignDrive™",
|
||||
"target": "_self",
|
||||
"pageType": "mf",
|
||||
"description": "",
|
||||
"objectId": "remoteUrl=aHR0cHM6Ly9xaWstYWktb3JnLmdpdGh1Yi5pby9TaWduLU1pY3JvYXBwVjIvcmVtb3RlRW50cnkuanM=&moduleToLoad=AppRoutes&remoteName=signmicroapp/legadrive"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-address-card",
|
||||
"title": "Reports",
|
||||
"target": "_self",
|
||||
"pageType": null,
|
||||
"description": "",
|
||||
"objectId": null,
|
||||
"children": [
|
||||
{
|
||||
"icon": "fas fa-signature",
|
||||
"title": "Need your sign",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "4Hhwbp482K"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-tasks",
|
||||
"title": "In Progress",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "1MwEuxLEkF"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-check-circle",
|
||||
"title": "Completed",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "kQUoW4hUXz"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-edit",
|
||||
"title": "Drafts",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "ByHuevtCFY"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-times-circle",
|
||||
"title": "Declined",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "UPr2Fm5WY3"
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-hourglass-end",
|
||||
"title": "Expired",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "zNqBHXHsYH"
|
||||
},
|
||||
{
|
||||
"icon": "fa-solid fa-address-book",
|
||||
"title": "Contactbook",
|
||||
"target": "_self",
|
||||
"pageType": "report",
|
||||
"description": "",
|
||||
"objectId": "5KhaPr482K"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"icon": "fas fa-cog",
|
||||
"title": "Settings",
|
||||
"target": "_self",
|
||||
"pageType": null,
|
||||
"description": "",
|
||||
"objectId": null,
|
||||
"children": [
|
||||
{
|
||||
"icon": "fas fa-pen-fancy",
|
||||
"title": "My Signature",
|
||||
"target": "_self",
|
||||
"pageType": "mf",
|
||||
"description": "",
|
||||
"objectId": "remoteUrl=aHR0cHM6Ly9xaWstYWktb3JnLmdpdGh1Yi5pby9TaWduLU1pY3JvYXBwVjIvcmVtb3RlRW50cnkuanM=&moduleToLoad=AppRoutes&remoteName=signmicroapp/managesign"
|
||||
},
|
||||
{
|
||||
"icon": "far fa-user",
|
||||
"title": "Add User",
|
||||
"target": "_self",
|
||||
"pageType": "form",
|
||||
"description": "",
|
||||
"objectId": "lM0xRnM3iE"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"menuTitle": "Admin Menu",
|
||||
"menuType": "Side Menu"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user