Spaces:
Running
Running
| const { body } = require("express-validator"); | |
| exports.updateMeValidation = [ | |
| body("name").optional().isString().withMessage("Invalid name"), | |
| body("email").optional().isEmail().withMessage("Invalid email"), | |
| body("phone") | |
| .optional() | |
| .isLength({ min: 11, max: 11 }) | |
| .withMessage("Phone must be 11 digits"), | |
| body("city").optional().isString().withMessage("Invalid city"), | |
| body("currentPassword") | |
| .notEmpty() | |
| .withMessage("Current password is required") | |
| ]; | |