Fix API check.

This commit is contained in:
Mike Cao 2020-09-16 13:13:50 -07:00
parent 4ab71c42a6
commit 81789d6723
2 changed files with 8 additions and 8 deletions

View file

@ -5,16 +5,16 @@ import { ok, unauthorized, methodNotAllowed } from 'lib/response';
export default async (req, res) => {
await useAuth(req, res);
const { is_admin: current_user_is_admin } = req.auth;
const { is_admin } = req.auth;
if (!is_admin) {
return unauthorized(res);
}
if (req.method === 'GET') {
if (current_user_is_admin) {
const accounts = await getAccounts();
const accounts = await getAccounts();
return ok(res, accounts);
}
return unauthorized(res);
return ok(res, accounts);
}
return methodNotAllowed(res);