Initial push

This commit is contained in:
Henry
2023-04-06 22:17:34 +01:00
commit 05c86ff9c5
162 changed files with 9112 additions and 0 deletions
+25
View File
@@ -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
+9
View File
@@ -0,0 +1,9 @@
import dashboard from './dashboard'
// ==============================|| MENU ITEMS ||============================== //
const menuItems = {
items: [dashboard]
}
export default menuItems
+38
View File
@@ -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