f6d37e4667
Modular monolith moved entities out of src/Entity into src/Module/*/Domain/Entity without configuring api_platform.mapping.paths. Resources stayed discoverable via service autoconfiguration, but annotated filter services were registered only for classes found in resource_class_directories (the now-empty default src/Entity and src/ApiResource), so every #[ApiFilter] (SearchFilter, BooleanFilter, OrderFilter, DateFilter) was silently ignored across the whole API — collection filters never narrowed results (my-tasks showed all users' tasks, time entries leaked across users, directory would leak per-client data). Declare the seven module entity directories under mapping.paths so the annotated filter services are generated again.