mirror of
https://github.com/docmost/docmost.git
synced 2025-11-19 10:21:11 +10:00
* feat(EE): MFA implementation for enterprise edition - Add TOTP-based two-factor authentication - Add backup codes support - Add MFA enforcement at workspace level - Add MFA setup and challenge UI pages - Support MFA for login and password reset flows - Add MFA validation for secure pages * fix types * remove unused object * sync * remove unused type * sync * refactor: rename MFA enabled field to is_enabled * sync
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import AccountNameForm from "@/features/user/components/account-name-form";
|
|
import ChangeEmail from "@/features/user/components/change-email";
|
|
import ChangePassword from "@/features/user/components/change-password";
|
|
import { Divider } from "@mantine/core";
|
|
import AccountAvatar from "@/features/user/components/account-avatar";
|
|
import SettingsTitle from "@/components/settings/settings-title.tsx";
|
|
import { getAppName } from "@/lib/config.ts";
|
|
import { Helmet } from "react-helmet-async";
|
|
import { useTranslation } from "react-i18next";
|
|
import { AccountMfaSection } from "@/features/user/components/account-mfa-section";
|
|
|
|
export default function AccountSettings() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>
|
|
{t("My Profile")} - {getAppName()}
|
|
</title>
|
|
</Helmet>
|
|
<SettingsTitle title={t("My Profile")} />
|
|
|
|
<AccountAvatar />
|
|
|
|
<AccountNameForm />
|
|
|
|
<Divider my="lg" />
|
|
|
|
<ChangeEmail />
|
|
|
|
<Divider my="lg" />
|
|
|
|
<ChangePassword />
|
|
|
|
<Divider my="lg" />
|
|
|
|
<AccountMfaSection />
|
|
</>
|
|
);
|
|
}
|