mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 19:02:33 +01:00
Fix previous commit
This commit is contained in:
parent
1b66f71d8c
commit
62d992893c
@ -15,7 +15,7 @@ router.get("/:code", route({}), async (req: Request, res: Response) => {
|
|||||||
|
|
||||||
router.post("/:code", route({}), async (req: Request, res: Response) => {
|
router.post("/:code", route({}), async (req: Request, res: Response) => {
|
||||||
const { code } = req.params;
|
const { code } = req.params;
|
||||||
const { features } = await Guild.findOneOrFail({where: { code }});
|
const { features } = await Guild.findOneOrFail({ id: (await Invite.findOneOrFail({ code })).guild_id});
|
||||||
const { public_flags } = await User.findOneOrFail({ id: req.user_id });
|
const { public_flags } = await User.findOneOrFail({ id: req.user_id });
|
||||||
|
|
||||||
if(features.includes("INTERNAL_EMPLOYEE_ONLY") && (public_flags & 1) !== 1) throw new HTTPError("You are not allowed to join this guild.", 401)
|
if(features.includes("INTERNAL_EMPLOYEE_ONLY") && (public_flags & 1) !== 1) throw new HTTPError("You are not allowed to join this guild.", 401)
|
||||||
|
Loading…
Reference in New Issue
Block a user