mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
add nullable to isPublic
This commit is contained in:
@@ -10,9 +10,9 @@ export interface IChatFlow {
|
||||
name: string
|
||||
flowData: string
|
||||
deployed: boolean
|
||||
isPublic: boolean
|
||||
updatedDate: Date
|
||||
createdDate: Date
|
||||
isPublic?: boolean
|
||||
apikeyid?: string
|
||||
chatbotConfig?: string
|
||||
}
|
||||
|
||||
@@ -16,8 +16,8 @@ export class ChatFlow implements IChatFlow {
|
||||
@Column()
|
||||
deployed: boolean
|
||||
|
||||
@Column()
|
||||
isPublic: boolean
|
||||
@Column({ nullable: true })
|
||||
isPublic?: boolean
|
||||
|
||||
@Column({ nullable: true })
|
||||
apikeyid?: string
|
||||
|
||||
Reference in New Issue
Block a user