Skip to content

Commit

Permalink
Expose controller routes
Browse files Browse the repository at this point in the history
  • Loading branch information
Prokyonn committed Mar 1, 2024
1 parent 66fa990 commit c7e873b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Presentation/Controller/Admin/RequeueController.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use function Psl\Type\shape;
use function Psl\Type\vec;

#[Route(path: '/messenger-failed-queue/requeue', name: 'tailr.messenger_failed_queue_requeue', methods: ['PUT'])]
#[Route(path: '/messenger-failed-queue/requeue', name: 'tailr.messenger_failed_queue_requeue', options: ['expose' => true], methods: ['PUT'])]
final class RequeueController extends AbstractSecuredMessengerFailedQueueController implements SecuredControllerInterface
{
public function __construct(
Expand Down
2 changes: 1 addition & 1 deletion src/Presentation/Controller/Admin/RetryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use function Psl\Type\shape;
use function Psl\Type\vec;

#[Route(path: '/messenger-failed-queue/retry', name: 'tailr.messenger_failed_queue_retry', methods: ['PUT'])]
#[Route(path: '/messenger-failed-queue/retry', name: 'tailr.messenger_failed_queue_retry', options: ['expose' => true], methods: ['PUT'])]
final class RetryController extends AbstractSecuredMessengerFailedQueueController implements SecuredControllerInterface
{
public function __construct(
Expand Down

0 comments on commit c7e873b

Please sign in to comment.