diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/api/routes/users/@me/index.ts | 3 | ||||
-rw-r--r-- | src/api/routes/users/@me/mfa/totp/enable.ts | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/api/routes/users/@me/index.ts b/src/api/routes/users/@me/index.ts index abfb333a..5738776f 100644 --- a/src/api/routes/users/@me/index.ts +++ b/src/api/routes/users/@me/index.ts @@ -36,9 +36,6 @@ router.patch( select: [...PrivateUserProjection, "data"], }); - if (user.email == "demo@maddy.k.vu") - throw new HTTPError("Demo user, sorry", 400); - if (body.avatar) body.avatar = await handleFile( `/avatars/${req.user_id}`, diff --git a/src/api/routes/users/@me/mfa/totp/enable.ts b/src/api/routes/users/@me/mfa/totp/enable.ts index 75c64425..2c7044da 100644 --- a/src/api/routes/users/@me/mfa/totp/enable.ts +++ b/src/api/routes/users/@me/mfa/totp/enable.ts @@ -23,9 +23,6 @@ router.post( select: ["data", "email"], }); - if (user.email == "demo@maddy.k.vu") - throw new HTTPError("Demo user, sorry", 400); - // TODO: Are guests allowed to enable 2fa? if (user.data.hash) { if (!(await bcrypt.compare(body.password, user.data.hash))) { |