mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import { auth } from "auth"
|
|
import { NextResponse } from "next/server"
|
|
|
|
export const GET = auth(function GET(req) {
|
|
if (req.auth) {
|
|
return NextResponse.json(req.auth)
|
|
}
|
|
|
|
return NextResponse.json({ message: "Not authenticated" }, { status: 401 })
|
|
})
|