Simplify role query as per code review

This commit is contained in:
LachlanCourt 2022-07-05 01:03:35 +10:00 committed by Erkin Alp Güney
parent 6a801eafbf
commit c7fa223853

View File

@ -16,8 +16,7 @@ const router = Router();
router.get("/",route({}), async (req: Request, res: Response) => {
const { guild_id, role_id } = req.params
await Member.IsInGuildOrFail(req.user_id, guild_id);
const roles = await Role.find({ guild_id: guild_id })
const role = roles.find((r: {id: string}) => r.id === role_id);
const role = await Role.find({ guild_id, id: role_id })
return res.json(role);
});