Mariusz Wierzbicki

Results 3 comments of Mariusz Wierzbicki

other simple solution: decorate the `SwaggerUiListener` ``` #[AsDecorator(decorates: 'api_platform.swagger.listener.ui')] final class SwaggerUiListener { public const DISABLE_SWAGGER = 'disable_swagger'; public function __construct( #[AutowireDecorated] private \ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener $decorated ) { } public function...

If you want to have a separate filter per operation you must define all filters as service configuration. ```services: book.date_filter: parent: 'api_platform.doctrine.orm.date_filter' arguments: [ { createdAt: ~ } ] tags:...