feat: make flow editor read only when published

This commit is contained in:
Ali BARIN
2022-08-24 21:00:49 +02:00
parent 5ed3b9230e
commit be141e55a9
13 changed files with 87 additions and 25 deletions

View File

@@ -9,7 +9,7 @@ class Flow extends Base {
id!: string;
name!: string;
userId!: string;
active = false;
active: boolean;
steps?: [Step];
published_at: string;