Move form builders to their own folder

We were defining one builder in the `app/lib/` folder and another one
inside a helper module.

So now we're grouping them together. This way we're following the "one
class per file" convention that we follow most of the time. And, by
extracting the `TranslatableFormBuilder` class to its own file, it'll be
easier to add tests for it.

Note that, for consistency, we're renaming the
`TranslationsFieldsBuilder` class so it ends in `FormBuilder`.
This commit is contained in:
Javi Martín
2024-05-23 21:14:10 +02:00
parent 26b48e527a
commit c11780880c
7 changed files with 77 additions and 78 deletions