Remove social auth and stabilize email/password flow

This commit is contained in:
2026-02-21 23:16:16 -05:00
parent 40f956f9f9
commit cae7cbb98f
7 changed files with 46 additions and 72 deletions

View File

@@ -2,6 +2,6 @@ import { Elysia } from 'elysia';
import { auth } from '../auth';
export const betterAuthRoutes = new Elysia()
.all('/api/auth/*', async ({ request }) => {
.all('/auth/*', async ({ request }) => {
return auth.handler(request);
});