25 lines
643 B
TypeScript
25 lines
643 B
TypeScript
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;
|