Add subtype

This commit is contained in:
Adria Navarro 2023-10-04 14:28:43 +02:00
parent e01600d1bb
commit b19c5ae5c6
1 changed files with 2 additions and 0 deletions

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,
},
}