Initial commit

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

24
src/integrations.ts Normal file
View File

@@ -0,0 +1,24 @@
import type { ModuleIntegrations } from "@KTXC/types/moduleTypes";
const integrations: ModuleIntegrations = {
user_settings_security: [
{
id: 'totp-enrollment',
label: 'Two-Factor Authentication',
icon: 'mdi-shield-check',
priority: 20,
component: () => import('@/views/UserSettingsSecurityPanel.vue'),
},
],
user_manager_security_panels: [
{
id: 'totp-management',
label: 'Two-Factor Authentication',
icon: 'mdi-two-factor-authentication',
priority: 20,
component: () => import('@/components/AdminSecurityPanel.vue'),
},
],
};
export default integrations;