mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
34 lines
1.0 KiB
JavaScript
Executable File
34 lines
1.0 KiB
JavaScript
Executable File
import loadable from "@loadable/component"
|
|
|
|
export default {
|
|
id: "security",
|
|
icon: "Shield",
|
|
label: "Security",
|
|
group: "basic",
|
|
settings: [
|
|
{
|
|
"id": "change-password",
|
|
"group": "security.account",
|
|
"title": "Change Password",
|
|
"description": "Change your password",
|
|
"icon": "Lock",
|
|
"component": loadable(() => import("../components/changePassword")),
|
|
},
|
|
{
|
|
"id": "two-factor-authentication",
|
|
"group": "security.account",
|
|
"title": "Two-Factor Authentication",
|
|
"description": "Add an extra layer of security to your account",
|
|
"icon": "MdOutlineSecurity",
|
|
"component": "Switch",
|
|
},
|
|
{
|
|
"id": "sessions",
|
|
"group": "security.account",
|
|
"title": "Sessions",
|
|
"description": "Manage your active sessions",
|
|
"icon": "Monitor",
|
|
"component": loadable(() => import("../components/sessions")),
|
|
}
|
|
]
|
|
} |