mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
import { useAuth } from 'lib/middleware';
|
|
import { ok, unauthorized } from 'next-basics';
|
|
|
|
export default async (req, res) => {
|
|
await useAuth(req, res);
|
|
|
|
if (req.auth) {
|
|
return ok(res, req.auth);
|
|
}
|
|
|
|
return unauthorized(res);
|
|
};
|