Initial commit
This commit is contained in:
32
src/integrations.ts
Normal file
32
src/integrations.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
import type { ModuleIntegrations } from '@KTXC/types/moduleTypes';
|
||||
|
||||
const integrations: ModuleIntegrations = {
|
||||
user_settings_security: [
|
||||
{
|
||||
id: 'password-change',
|
||||
label: 'Change Password',
|
||||
priority: 10,
|
||||
component: () => import('@/views/UserSettingsSecurityPanel.vue'),
|
||||
},
|
||||
],
|
||||
user_manager_security_panels: [
|
||||
{
|
||||
id: 'password-management',
|
||||
label: 'Password',
|
||||
icon: 'mdi-lock',
|
||||
priority: 10,
|
||||
component: () => import('@/components/AdminSecurityPanel.vue'),
|
||||
},
|
||||
],
|
||||
user_manager_create_credentials: [
|
||||
{
|
||||
id: 'password-setup',
|
||||
label: 'Password',
|
||||
icon: 'mdi-lock',
|
||||
priority: 10,
|
||||
component: () => import('@/components/CredentialSetupPanel.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default integrations;
|
||||
Reference in New Issue
Block a user