main
main copied to clipboard
support required fields in custom forms
Acceptance Criteria
STUB
Context
In playing #476 we realized there is a lot of unexpected complexity in trying to validate custom forms in which 3 aspects may vary: (1) whether a field is included in a form, (2) whether it is required, (3) what its database validations are (including presence_of validations and formatting validations).
In order to move forward, we made the simplifying assumption that we could temporarily eliminate (2) by not requiring any fields, never validating for presence of any fields, and then only validating the format of a field if it is present.
This helps us ship, but is not the ultimate desired state, so we created this card, which needs full AC's to play.