1
0
forked from baron/baron-sso
Files
baron-sso/adminfront/src/features/users/userSchemaFields.ts

19 lines
322 B
TypeScript

export type UserSchemaFieldType =
| "text"
| "number"
| "boolean"
| "date"
| "float"
| "datetime";
export type UserSchemaField = {
key: string;
label?: string;
type?: UserSchemaFieldType;
required?: boolean;
adminOnly?: boolean;
validation?: string;
isLoginId?: boolean;
indexed?: boolean;
};