mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
import { useAuth } from 'lib/middleware';
|
|
import { ok, unauthorized } from 'lib/response';
|
|
|
|
export default async (req, res) => {
|
|
await useAuth(req, res);
|
|
|
|
if (req.auth) {
|
|
return ok(res, req.auth);
|
|
}
|
|
|
|
return unauthorized(res);
|
|
};
|