diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-19 18:43:25 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-19 18:43:25 +0200 |
commit | a87ea83a78cfb2945f71d268c6cfd24041fd552d (patch) | |
tree | 9714b73a309fe6b2c2213cc851e7cb3b2301bac8 | |
parent | :bug: fix guild create icon (diff) | |
download | server-a87ea83a78cfb2945f71d268c6cfd24041fd552d.tar.xz |
:art: user is verified by default
-rw-r--r-- | api/src/routes/auth/register.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/auth/register.ts b/api/src/routes/auth/register.ts index efe91625..c0b0e18a 100644 --- a/api/src/routes/auth/register.ts +++ b/api/src/routes/auth/register.ts @@ -202,7 +202,7 @@ router.post("/", route({ body: "RegisterSchema" }), async (req: Request, res: Re premium_type: 2, bio: "", mfa_enabled: false, - verified: false, + verified: true, disabled: false, deleted: false, email: email, |