1
0
Fork 0
mirror of synced 2024-09-28 07:11:40 +12:00

Add single subtype

This commit is contained in:
Adria Navarro 2024-03-20 13:18:22 +01:00
parent 1de2002341
commit 23ac11ad6b

View file

@ -38,6 +38,7 @@ export interface Row extends Document {
export enum FieldSubtype {
USER = "user",
USERS = "users",
SINGLE = "single",
}
export const FieldTypeSubtypes = {
@ -45,4 +46,7 @@ export const FieldTypeSubtypes = {
USER: FieldSubtype.USER,
USERS: FieldSubtype.USERS,
},
ATTACHMENT: {
SINGLE: FieldSubtype.SINGLE,
},
}