1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

Add subtype

This commit is contained in:
Adria Navarro 2023-10-04 14:28:43 +02:00
parent e01600d1bb
commit b19c5ae5c6

View file

@ -37,10 +37,12 @@ export interface Row extends Document {
export enum FieldSubtype {
USER = "user",
USERS = "users",
}
export const FieldTypeSubtypes = {
BB_REFERENCE: {
USER: FieldSubtype.USER,
USESR: FieldSubtype.USERS,
},
}