Initial commit
This commit is contained in:
24
src/integrations.ts
Normal file
24
src/integrations.ts
Normal 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;
|
||||
Reference in New Issue
Block a user