feat(auth): add user and role management

This commit is contained in:
Ali BARIN
2023-07-18 21:00:10 +00:00
parent b581f539e2
commit 9e64af4793
68 changed files with 1970 additions and 156 deletions

View File

@@ -95,6 +95,15 @@ export interface IUser {
connections: IConnection[];
flows: IFlow[];
steps: IStep[];
role: IRole;
}
export interface IRole {
id: string;
key: string;
name: string;
description: string;
isAdmin: boolean;
}
export interface IFieldDropdown {