Compare commits

...

2 Commits

Author SHA1 Message Date
cc02d4c9c7 Merge branch 'example'
All checks were successful
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Successful in 2m21s
2026-01-30 03:39:25 +03:00
2d80b69cd2 Update route.ts 2026-01-30 01:59:00 +03:00

View File

@@ -3,6 +3,9 @@ import { authService } from "@/lib/api/example/auth/service";
import NextAuth from "next-auth"; import NextAuth from "next-auth";
import Credentials from "next-auth/providers/credentials"; import Credentials from "next-auth/providers/credentials";
function randomToken() { function randomToken() {
return Math.random().toString(36).substring(2) + Date.now().toString(36); return Math.random().toString(36).substring(2) + Date.now().toString(36);
} }