mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 15:01:11 +03:00
add deployed boolean back
This commit is contained in:
@@ -9,6 +9,7 @@ export interface IChatFlow {
|
|||||||
id: string
|
id: string
|
||||||
name: string
|
name: string
|
||||||
flowData: string
|
flowData: string
|
||||||
|
deployed: boolean
|
||||||
isPublic: boolean
|
isPublic: boolean
|
||||||
updatedDate: Date
|
updatedDate: Date
|
||||||
createdDate: Date
|
createdDate: Date
|
||||||
|
|||||||
@@ -13,6 +13,9 @@ export class ChatFlow implements IChatFlow {
|
|||||||
@Column()
|
@Column()
|
||||||
flowData: string
|
flowData: string
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
deployed: boolean
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
isPublic: boolean
|
isPublic: boolean
|
||||||
|
|
||||||
|
|||||||
@@ -201,6 +201,7 @@ const Canvas = () => {
|
|||||||
if (!chatflow.id) {
|
if (!chatflow.id) {
|
||||||
const newChatflowBody = {
|
const newChatflowBody = {
|
||||||
name: chatflowName,
|
name: chatflowName,
|
||||||
|
deployed: false,
|
||||||
isPublic: false,
|
isPublic: false,
|
||||||
flowData
|
flowData
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user