add deployed boolean back
This commit is contained in:
parent
7608d74676
commit
636ad5dc0c
|
|
@ -9,6 +9,7 @@ export interface IChatFlow {
|
|||
id: string
|
||||
name: string
|
||||
flowData: string
|
||||
deployed: boolean
|
||||
isPublic: boolean
|
||||
updatedDate: Date
|
||||
createdDate: Date
|
||||
|
|
|
|||
|
|
@ -13,6 +13,9 @@ export class ChatFlow implements IChatFlow {
|
|||
@Column()
|
||||
flowData: string
|
||||
|
||||
@Column()
|
||||
deployed: boolean
|
||||
|
||||
@Column()
|
||||
isPublic: boolean
|
||||
|
||||
|
|
|
|||
|
|
@ -201,6 +201,7 @@ const Canvas = () => {
|
|||
if (!chatflow.id) {
|
||||
const newChatflowBody = {
|
||||
name: chatflowName,
|
||||
deployed: false,
|
||||
isPublic: false,
|
||||
flowData
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue