mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-24 19:05:29 +00:00
Add semicolon
This commit is contained in:
committed by
Erkin Alp Güney
parent
5dc1479431
commit
73416102a0
@@ -16,7 +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 role = await Role.find({ guild_id, id: role_id })
|
||||
const role = await Role.find({ guild_id, id: role_id });
|
||||
return res.json(role);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user