⚰️ delete validation for image with joi in edit user schema

need to be deleted because image validation is run inside helper not joi validation body schema
This commit is contained in:
unknown
2025-06-29 00:01:10 +07:00
parent 01b29e2a78
commit 2f53060659

View File

@ -16,7 +16,5 @@ export const editUserSchema = Joi.object({
.min(7)
.max(15),
bioProfile: Joi.string().max(300),
avatar: Joi.string().uri(),
commentBackground: Joi.string().uri(),
deletedAt: Joi.date(),
});