feat(auth): admin user updates added
if a password change happens then an email will be sent to the user.
This commit is contained in:
10
frontend/src/routes/_admin/users.tsx
Normal file
10
frontend/src/routes/_admin/users.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import UserPage from "@/components/admin/user/UserPage";
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createFileRoute("/_admin/users")({
|
||||
component: RouteComponent,
|
||||
});
|
||||
|
||||
function RouteComponent() {
|
||||
return <UserPage />;
|
||||
}
|
||||
Reference in New Issue
Block a user