Преглед изворни кода

fix: remove check user validation

Pouria Ezzati пре 3 година
родитељ
комит
8bfd41299b
1 измењених фајлова са 0 додато и 2 уклоњено
  1. 0 2
      server/handlers/validators.ts

+ 0 - 2
server/handlers/validators.ts

@@ -147,8 +147,6 @@ export const editLink = [
     .withMessage(`${env.DEFAULT_DOMAIN} URLs are not allowed.`),
   body("password")
     .optional({ nullable: true, checkFalsy: true })
-    .custom(checkUser)
-    .withMessage("Only users can use this field.")
     .isString()
     .isLength({ min: 3, max: 64 })
     .withMessage("Password length must be between 3 and 64."),