fix: sign-able readonly fields (#1885)

This commit is contained in:
Catalin Pit
2025-07-10 09:47:36 +03:00
committed by GitHub
parent cb73d21e05
commit d6c11bd195
5 changed files with 39 additions and 8 deletions

View File

@ -0,0 +1,8 @@
import { FieldType } from '@prisma/client';
export const AUTO_SIGNABLE_FIELD_TYPES: FieldType[] = [
FieldType.NAME,
FieldType.INITIALS,
FieldType.EMAIL,
FieldType.DATE,
];