umami/pages/api/auth/verify.js

13 lines
241 B
JavaScript
Raw Normal View History

2020-08-05 07:45:05 +02:00
import { useAuth } from 'lib/middleware';
import { ok, unauthorized } from 'lib/response';
2020-08-05 07:45:05 +02:00
export default async (req, res) => {
await useAuth(req, res);
if (req.auth) {
return ok(res, req.auth);
2020-08-05 07:45:05 +02:00
}
return unauthorized(res);
2020-08-05 07:45:05 +02:00
};