diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-02-24 23:46:52 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-02-24 23:46:52 +1100 |
commit | 51fe1b8955e8c7ca4ef1b3eda6a5cea769a9e191 (patch) | |
tree | 75e5fd23da11644e937b4bb8e69f5d1310c5ca97 | |
parent | Merge pull request #984 from fosscord/dependabot/npm_and_yarn/http-cache-sema... (diff) | |
download | server-51fe1b8955e8c7ca4ef1b3eda6a5cea769a9e191.tar.xz |
send required_action in gateway for when email verification is required
-rw-r--r-- | src/api/routes/auth/register.ts | 11 | ||||
-rw-r--r-- | src/gateway/opcodes/Identify.ts | 6 |
2 files changed, 6 insertions, 11 deletions
diff --git a/src/api/routes/auth/register.ts b/src/api/routes/auth/register.ts index c941fdf6..0bf8efae 100644 --- a/src/api/routes/auth/register.ts +++ b/src/api/routes/auth/register.ts @@ -278,17 +278,6 @@ router.post( await Invite.joinGuild(user.id, body.invite); } - // return an error for unverified accounts if verification is required - if (Config.get().login.requireVerification && !user.verified) { - throw FieldErrors({ - login: { - code: "ACCOUNT_LOGIN_VERIFICATION_EMAIL", - message: - "Email verification is required, please check your email.", - }, - }); - } - return res.json({ token: await generateToken(user.id) }); }, ); diff --git a/src/gateway/opcodes/Identify.ts b/src/gateway/opcodes/Identify.ts index 030ca66e..1a632b84 100644 --- a/src/gateway/opcodes/Identify.ts +++ b/src/gateway/opcodes/Identify.ts @@ -320,6 +320,12 @@ export async function onIdentify(this: WebSocket, data: Payload) { merged_members: merged_members, // shard // TODO: only for user sharding sessions: [], // TODO: + + // lol hack whatever + required_action: + Config.get().login.requireVerification && !user.verified + ? "REQUIRE_VERIFIED_EMAIL" + : undefined, }; // TODO: send real proper data structure |