summary refs log tree commit diff
path: root/api/src
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-05-30 17:02:07 +0300
committerGitHub <noreply@github.com>2022-05-30 17:02:07 +0300
commitb1a8fdba5a54b65193ff30e1c4c43773497f80ec (patch)
tree847878872b2d39792a8e8f67cd338444ae185578 /api/src
parentMerge pull request #758 from xFlum3/patch-2 (diff)
parentRespect register_dateOfBirth_required = false (diff)
downloadserver-ts-b1a8fdba5a54b65193ff30e1c4c43773497f80ec.tar.xz
Merge pull request #759 from MaddyUnderStars/fix/respectRegisterConfig
Respect register_dateOfBirth_required = false
Diffstat (limited to 'api/src')
-rw-r--r--api/src/routes/auth/register.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/auth/register.ts b/api/src/routes/auth/register.ts

index cd1bcb72..94dd6502 100644 --- a/api/src/routes/auth/register.ts +++ b/api/src/routes/auth/register.ts
@@ -128,7 +128,7 @@ router.post("/", route({ body: "RegisterSchema" }), async (req: Request, res: Re throw FieldErrors({ date_of_birth: { code: "BASE_TYPE_REQUIRED", message: req.t("common:field.BASE_TYPE_REQUIRED") } }); - } else if (register.dateOfBirth.minimum) { + } else if (register.dateOfBirth.required && register.dateOfBirth.minimum) { const minimum = new Date(); minimum.setFullYear(minimum.getFullYear() - register.dateOfBirth.minimum); body.date_of_birth = new Date(body.date_of_birth as Date);