mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
* feat(funnel): add per-form required field list Single source for which funnel answers are required, plus the check the intake endpoint runs a submission against. * refactor(web): build the funnel form schema from the shared list Form definitions no longer carry a `required` flag, they describe rendering only. The three pages pass REQUIRED_FIELDS_BY_FORM into ConnectFormSection, which derives the zod schema and the required markers from it. * fix(civi-crm): validate required funnel fields on afform-submit Only formName, the hear-about answer and the captcha were checked, so a direct POST could create a record with no name, email or country. A payload missing a required answer now gets a 400 naming the fields. * docs(funnel): document the required-field validation