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
{{ message }}
This repository was archived by the owner on Apr 16, 2026. It is now read-only.
In the filing_validators.py, implement a different way to handle error messages when the validator throws an error. Currently, validations are duplicated for the sake of more accurate error responses. Change this to reduce the redundancy of the validations while still providing accurate messaging.
Current possible implementation is by putting the error messages piped into the validation name check.
Example - "valid_filing_exists|sign".
The error message will be an enum or a value that actually points to the message. The message will then be grabbed and formatted with the appropriate data to return the message. If no second value is piped in, use the generic message supplied in the validator already.
In the request_action_validator.py, the validator_name needs to be parsed to ensure it'll still choose the correct validations even with the newly piped value added in.
In the
filing_validators.py, implement a different way to handle error messages when the validator throws an error. Currently, validations are duplicated for the sake of more accurate error responses. Change this to reduce the redundancy of the validations while still providing accurate messaging.Current possible implementation is by putting the error messages piped into the validation name check.
Example -
"valid_filing_exists|sign".The error message will be an enum or a value that actually points to the message. The message will then be grabbed and formatted with the appropriate data to return the message. If no second value is piped in, use the generic message supplied in the validator already.
In the
request_action_validator.py, thevalidator_nameneeds to be parsed to ensure it'll still choose the correct validations even with the newly piped value added in.