瀏覽代碼

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."),