Emmanuel Veyrat
Results
3
comments of
Emmanuel Veyrat
Same need here. How can we change the supported scopes based on the grant type. Example : - client_credentials : full_access - password : read
I could make it work: ``` app.listener.job: class: App\CoreBundle\Listener\JobListener arguments: - @doctrine.orm.default_entity_manager tags: - { name: kernel.event_listener, event: jms_job_queue.job_state_change, method: onStateChange } ``` ```