Skip to content

Commit

Permalink
Fix route controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
pablothedude committed Nov 19, 2024
1 parent 13336a7 commit 3175335
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,19 +137,19 @@ ra_second_factors:

ra_second_factors_export:
path: /ra-second-factors-export
defaults: { _controller: SurfnetStepupMiddlewareApiBundle:RaSecondFactor:export }
defaults: { _controller: Surfnet\StepupMiddleware\ApiBundle\Controller\RaSecondFactorController::export }
methods: [ GET ]
condition: "request.headers.get('Accept') matches '/^application\\\\/json($|[;,])/'"

identity_ra_list:
path: /registration-authority
defaults: { _controller: SurfnetStepupMiddlewareApiBundle:Ra:list }
defaults: { _controller: Surfnet\StepupMiddleware\ApiBundle\Controller\RaController::list }
methods: [ GET ]
condition: "request.headers.get('Accept') matches '/^application\\\\/json($|[;,])/'"

identity_ra_listing:
path: /ra-listing
defaults: { _controller: SurfnetStepupMiddlewareApiBundle:RaListing:search }
defaults: { _controller: Surfnet\StepupMiddleware\ApiBundle\Controller\RaListingController::search }
methods: [ GET ]
condition: "request.headers.get('Accept') matches '/^application\\\\/json($|[;,])/'"

Expand Down

0 comments on commit 3175335

Please sign in to comment.