sessions #2

Merged
admin merged 63 commits from sessions into main 2025-06-16 19:03:01 +02:00
44 changed files with 1901 additions and 139 deletions
Showing only changes of commit c2abf1a5ba - Show all commits

View File

@ -25,6 +25,7 @@ import VerifyEmailPage from "./pages/Verify/Email";
import VerifyEmailOtpPage from "./pages/Verify/Email/OTP";
import VerifyAvatarPage from "./pages/Verify/Avatar";
import VerifyReviewPage from "./pages/Verify/Review";
import AdminSessionsPage from "./pages/Admin/UserSessions";
const router = createBrowserRouter([
{
@ -81,6 +82,10 @@ const router = createBrowserRouter([
// },
],
},
{
path: "user-sessions",
children: [{ index: true, element: <AdminSessionsPage /> }],
},
],
},
],