Initial commit

This commit is contained in:
root
2025-12-21 10:00:41 -05:00
committed by Sebastian Krupinski
commit d2b2846567
17 changed files with 2757 additions and 0 deletions

32
src/integrations.ts Normal file
View 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;