33 lines
791 B
TypeScript
33 lines
791 B
TypeScript
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;
|