use authentik for auth
All checks were successful
Build / build (push) Successful in 3m31s

This commit is contained in:
Nareshkumar Rao
2025-04-04 23:29:57 +02:00
parent 4656df7fca
commit 434536d1f2
12 changed files with 151 additions and 192 deletions

6
src/auth.ts Normal file
View File

@ -0,0 +1,6 @@
import NextAuth from "next-auth";
import Authentik from "next-auth/providers/authentik";
export const { handlers, signIn, signOut, auth } = NextAuth({
providers: [Authentik],
});