Initial commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
import type { ModuleIntegrations } from "@KTXC/types/moduleTypes";
|
||||
|
||||
const integrations: ModuleIntegrations = {
|
||||
// Main application menu items
|
||||
app_menu: [
|
||||
{
|
||||
id: 'chrono-calendar',
|
||||
label: 'Calendar',
|
||||
path: '/calendar',
|
||||
icon: 'mdi-calendar',
|
||||
priority: 10,
|
||||
},
|
||||
{
|
||||
id: 'chrono-tasks',
|
||||
label: 'Tasks',
|
||||
path: '/tasks',
|
||||
icon: 'mdi-checkbox-marked-outline',
|
||||
priority: 20,
|
||||
},
|
||||
],
|
||||
|
||||
// Settings tab for chrono configuration
|
||||
// settings_tabs: [
|
||||
// {
|
||||
// id: 'chrono-settings',
|
||||
// label: 'Chrono Settings',
|
||||
// icon: 'mdi-clock-outline',
|
||||
// priority: 50,
|
||||
// component: () => import('@/views/ChronoSettings.vue'),
|
||||
// },
|
||||
// ],
|
||||
};
|
||||
|
||||
export default integrations;
|
||||
Reference in New Issue
Block a user