You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fields in the aplication need validators to check for problems before sending data to the database;
This validations can include:
null or undefined fields;
fields without valid text (spaces cannot validade);
Be creative; if you think of something that can be checked, include this;
Some fields that need to be validated:
Login and Sign-in Forms;
Posts;
Comment editions;
Messages (if page is done);
Tips:
New comments (see code in src/components/Posts/comments/addComments/index.jsx) already have a basic validation that can be found in the services folder (src/services/validators/messagingValidations);
All validations should be in the validators folder;
I'm using short circuit validation (example below) but, feel free to use another pattern.
The text was updated successfully, but these errors were encountered:
Hey @michael251194 , thank you for the interest in this project, if you need have any problems with the repo or need any help with something we are here to help
Description, please be as detailed as possible:
The fields in the aplication need validators to check for problems before sending data to the database;
This validations can include:
Some fields that need to be validated:
Tips:
I'm using short circuit validation (example below) but, feel free to use another pattern.
The text was updated successfully, but these errors were encountered: