update deployed as nullable

This commit is contained in:
Henry
2023-07-05 18:50:09 +01:00
parent 8e13912d55
commit 1d74473ef3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -9,9 +9,9 @@ export interface IChatFlow {
id: string
name: string
flowData: string
deployed: boolean
updatedDate: Date
createdDate: Date
deployed?: boolean
isPublic?: boolean
apikeyid?: string
chatbotConfig?: string
+2 -2
View File
@@ -13,8 +13,8 @@ export class ChatFlow implements IChatFlow {
@Column()
flowData: string
@Column()
deployed: boolean
@Column({ nullable: true })
deployed?: boolean
@Column({ nullable: true })
isPublic?: boolean