From e088421b213913c68bb771e3f9fb1c7c8141386f Mon Sep 17 00:00:00 2001 From: Rory& Date: Sun, 28 Jun 2026 01:25:07 +0200 Subject: [PATCH] More oauth2 role thingies --- src/api/routes/oauth2/authorize.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/api/routes/oauth2/authorize.ts b/src/api/routes/oauth2/authorize.ts index 72351042d..38a699b88 100644 --- a/src/api/routes/oauth2/authorize.ts +++ b/src/api/routes/oauth2/authorize.ts @@ -223,6 +223,9 @@ router.post( guild_id: body.guild_id, color: 0, colors: { primary_color: 0 }, + hoist: false, + mentionable: false, + position: 1, // TODO: calculate actual position and move stuff around }); await role.save(); await Member.addRole(body.guild_id, req.user_id, role.id);