It is even better to use a schema of OpenAPI documentation for validation. It is best to use decorators to write validation schema:
class LoginData { @Column({ [IS_REQUIRED]: true, pattern: config.emailPattern.source }) email: string; @Column({ [IS_REQUIRED]: true, minLength: config.minLengthPassword, maxLength: config.maxLengthPassword }) password: string; }
Great ... didn't know about this, Thanks :)
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
Where hackers, sticks, weekend warriors, pros, architects and wannabes come together
It is even better to use a schema of OpenAPI documentation for validation. It is best to use decorators to write validation schema:
Great ... didn't know about this, Thanks :)