process approval endpoint

This commit is contained in:
Fred KISSIE
2026-01-14 03:00:40 +01:00
parent d5b6a426a9
commit bc20a34a49
7 changed files with 149 additions and 4 deletions

View File

@@ -321,6 +321,15 @@ authenticated.get(
approval.listApprovals
);
authenticated.put(
"/org/:orgId/approvals/:approvalId",
verifyValidLicense,
verifyOrgAccess,
verifyUserHasAction(ActionsEnum.updateApprovals),
logActionAudit(ActionsEnum.updateApprovals),
approval.processPendingApproval
);
authenticated.get(
"/org/:orgId/login-page-branding",
verifyValidLicense,