mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 15:00:57 +03:00
Initial push
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
// assets
|
||||
import { IconHierarchy, IconKey, IconBook, IconListCheck } from '@tabler/icons'
|
||||
|
||||
// constant
|
||||
const icons = { IconHierarchy, IconKey, IconBook, IconListCheck }
|
||||
|
||||
// ==============================|| DASHBOARD MENU ITEMS ||============================== //
|
||||
|
||||
const dashboard = {
|
||||
id: 'dashboard',
|
||||
title: '',
|
||||
type: 'group',
|
||||
children: [
|
||||
{
|
||||
id: 'chatflows',
|
||||
title: 'Chatflows',
|
||||
type: 'item',
|
||||
url: '/chatflows',
|
||||
icon: icons.IconHierarchy,
|
||||
breadcrumbs: true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
export default dashboard
|
||||
@@ -0,0 +1,9 @@
|
||||
import dashboard from './dashboard'
|
||||
|
||||
// ==============================|| MENU ITEMS ||============================== //
|
||||
|
||||
const menuItems = {
|
||||
items: [dashboard]
|
||||
}
|
||||
|
||||
export default menuItems
|
||||
@@ -0,0 +1,38 @@
|
||||
// assets
|
||||
import { IconTrash, IconFileUpload, IconFileExport } from '@tabler/icons'
|
||||
|
||||
// constant
|
||||
const icons = { IconTrash, IconFileUpload, IconFileExport }
|
||||
|
||||
// ==============================|| SETTINGS MENU ITEMS ||============================== //
|
||||
|
||||
const settings = {
|
||||
id: 'settings',
|
||||
title: '',
|
||||
type: 'group',
|
||||
children: [
|
||||
{
|
||||
id: 'loadChatflow',
|
||||
title: 'Load Chatflow',
|
||||
type: 'item',
|
||||
url: '',
|
||||
icon: icons.IconFileUpload
|
||||
},
|
||||
{
|
||||
id: 'exportChatflow',
|
||||
title: 'Export Chatflow',
|
||||
type: 'item',
|
||||
url: '',
|
||||
icon: icons.IconFileExport
|
||||
},
|
||||
{
|
||||
id: 'deleteChatflow',
|
||||
title: 'Delete Chatflow',
|
||||
type: 'item',
|
||||
url: '',
|
||||
icon: icons.IconTrash
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
export default settings
|
||||
Reference in New Issue
Block a user