1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 10:22:39 +01:00

Rename the guild feature to match discord.com

discord.com has this too, and it is called `INVITES_DISABLED`
This commit is contained in:
Erkin Alp Güney 2023-04-27 18:28:00 +03:00 committed by GitHub
parent eb62028103
commit 21a589c2f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ router.post(
"Only intended for the staff of this server.",
401,
);
if (features.includes("INVITES_CLOSED"))
if (features.includes("INVITES_DISABLED"))
throw new HTTPError("Sorry, this guild has joins closed.", 403);
const invite = await Invite.joinGuild(req.user_id, code);