Merge branch 'main' into issue-553

This commit is contained in:
Ali BARIN
2022-10-08 15:03:51 +02:00
committed by GitHub
122 changed files with 14036 additions and 3174 deletions

View File

@@ -10,10 +10,10 @@ class User extends Base {
id!: string;
email!: string;
password!: string;
connections?: [Connection];
flows?: [Flow];
steps?: [Step];
executions?: [Execution];
connections?: Connection[];
flows?: Flow[];
steps?: Step[];
executions?: Execution[];
static tableName = 'users';