feat: display the email of the user who declined the document along with the decline reason in the document decline popup.

This commit is contained in:
RaktimaNXG
2024-09-03 19:48:21 +05:30
parent cb5bcd72e4
commit 9675e051bd
6 changed files with 76 additions and 6 deletions
@@ -22,6 +22,7 @@ export default async function getDocument(request) {
query.include('Signers');
query.include('AuditTrail.UserPtr');
query.include('Placeholders');
query.include('DeclineBy');
query.notEqualTo('IsArchive', true);
const res = await query.first({ useMasterKey: true });
if (res) {