Feat/SW-3461 setup auth with sas eurobonus * feat(SW-3461): Setup auth for sas eurobonus * . * feat: setup auth towards SAS * Fix auth via SAS and add logout route * . * merge * auth via SAS * fix powered by scandic logo * Merge branch 'master' of bitbucket.org:scandic-swap/web into feat/SW-3461-setup-auth-with-sas-eurobonus * Include access_token in jwt after successful login * merge Approved-by: Anton Gunnarsson
12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import { GET as DEFAULT_GET, POST as DEFAULT_POST } from "@/auth"
|
|
|
|
import type { NextRequest } from "next/server"
|
|
|
|
export function GET(req: NextRequest) {
|
|
return DEFAULT_GET(req)
|
|
}
|
|
|
|
export function POST(req: NextRequest) {
|
|
return DEFAULT_POST(req)
|
|
}
|