summary refs log tree commit diff
path: root/src/routes
diff options
context:
space:
mode:
authorIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-06 23:01:55 +0200
committerIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-06 23:01:55 +0200
commita53d728104ac448bcd35e9dce13357f56a21d59e (patch)
treec257bb5162ace60ac8b6455f5ee7e91934b33a9f /src/routes
parentUpdated (diff)
downloadserver-a53d728104ac448bcd35e9dce13357f56a21d59e.tar.xz
Update templates.ts
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/guilds/#guild_id/templates.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/guilds/#guild_id/templates.ts b/src/routes/guilds/#guild_id/templates.ts
index 7b820779..61b2f9d0 100644
--- a/src/routes/guilds/#guild_id/templates.ts
+++ b/src/routes/guilds/#guild_id/templates.ts
@@ -30,10 +30,10 @@ router.post("/", check(TemplateCreateSchema), async (req: Request, res: Response
 	const user = await UserModel.findOne({ id: req.user_id }).exec();
 	if (!user) throw new HTTPError("User not found", 404);
 
-	/*const perms = await getPermission(req.user_id, guild_id);
+	const perms = await getPermission(req.user_id, guild_id);
 
 	if (!perms.has("MANAGE_GUILD"))
-		throw new HTTPError("You missing the MANAGE_GUILD permission", 401);*/
+		throw new HTTPError("You missing the MANAGE_GUILD permission", 401);
 
 	const template_id = Snowflake.generate();