mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 21:27:20 +01:00
18 lines
461 B
TypeScript
18 lines
461 B
TypeScript
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 });
|
|
}
|
|
}
|