mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
Add two factor authentication for users who wish to enhance the security of their accounts.
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
export default function PasswordSettingsPage() {
|
|
redirect('/settings/security');
|
|
}
|