mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 07:07:17 +01:00
Converted admin, auth, me and realtime routes.
This commit is contained in:
parent
6c9f1ad06b
commit
5205551ca8
25 changed files with 346 additions and 7 deletions
18
src/app/api/auth/sso/route.ts
Normal file
18
src/app/api/auth/sso/route.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { redisEnabled } from '@umami/redis-client';
|
||||
import { json } from 'lib/response';
|
||||
import { parseRequest } from 'lib/request';
|
||||
import { saveAuth } from 'lib/auth';
|
||||
|
||||
export async function POST(request: Request) {
|
||||
const { auth, error } = await parseRequest(request);
|
||||
|
||||
if (error) {
|
||||
return error();
|
||||
}
|
||||
|
||||
if (redisEnabled) {
|
||||
const token = await saveAuth({ userId: auth.user.id }, 86400);
|
||||
|
||||
return json({ user: auth.user, token });
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue