mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
## Description Introduces the ability for users with the **Assistant** role to prefill fields on behalf of other signers. Assistants can fill in various field types such as text, checkboxes, dates, and more, streamlining the document preparation process before it reaches the final signers. https://github.com/user-attachments/assets/c1321578-47ec-405b-a70a-7d9578385895
23 lines
667 B
TypeScript
23 lines
667 B
TypeScript
import { DOCUMENT_EMAIL_TYPE } from '../types/document-audit-logs';
|
|
|
|
export const DOCUMENT_AUDIT_LOG_EMAIL_FORMAT = {
|
|
[DOCUMENT_EMAIL_TYPE.SIGNING_REQUEST]: {
|
|
description: 'Signing request',
|
|
},
|
|
[DOCUMENT_EMAIL_TYPE.VIEW_REQUEST]: {
|
|
description: 'Viewing request',
|
|
},
|
|
[DOCUMENT_EMAIL_TYPE.APPROVE_REQUEST]: {
|
|
description: 'Approval request',
|
|
},
|
|
[DOCUMENT_EMAIL_TYPE.ASSISTING_REQUEST]: {
|
|
description: 'Assisting request',
|
|
},
|
|
[DOCUMENT_EMAIL_TYPE.CC]: {
|
|
description: 'CC',
|
|
},
|
|
[DOCUMENT_EMAIL_TYPE.DOCUMENT_COMPLETED]: {
|
|
description: 'Document completed',
|
|
},
|
|
} satisfies Record<keyof typeof DOCUMENT_EMAIL_TYPE, unknown>;
|