mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-15 01:20:59 +00:00
Fix redirects using Symfony's RedirectController
This commit is contained in:
parent
c18f11efac
commit
e9e191bb4e
4 changed files with 4 additions and 4 deletions
|
|
@ -203,7 +203,7 @@ to the ``app/Resources/SyliusShopBundle/config/routing/checkout.yml`` file.
|
||||||
path: /
|
path: /
|
||||||
methods: [GET]
|
methods: [GET]
|
||||||
defaults:
|
defaults:
|
||||||
_controller: FrameworkBundle:Redirect:redirect
|
_controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController:redirectAction
|
||||||
route: sylius_shop_checkout_address
|
route: sylius_shop_checkout_address
|
||||||
|
|
||||||
sylius_shop_checkout_address:
|
sylius_shop_checkout_address:
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ sylius_admin_taxon_index:
|
||||||
path: /taxons/
|
path: /taxons/
|
||||||
methods: [GET]
|
methods: [GET]
|
||||||
defaults:
|
defaults:
|
||||||
_controller: FrameworkBundle:Redirect:redirect
|
_controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController:redirectAction
|
||||||
route: sylius_admin_taxon_create
|
route: sylius_admin_taxon_create
|
||||||
permanent: true
|
permanent: true
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ sylius_shop_account_root:
|
||||||
path: /
|
path: /
|
||||||
methods: [GET]
|
methods: [GET]
|
||||||
defaults:
|
defaults:
|
||||||
_controller: FrameworkBundle:Redirect:redirect
|
_controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController:redirectAction
|
||||||
route: sylius_shop_account_dashboard
|
route: sylius_shop_account_dashboard
|
||||||
permanent: true
|
permanent: true
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ sylius_shop_checkout_start:
|
||||||
path: /
|
path: /
|
||||||
methods: [GET]
|
methods: [GET]
|
||||||
defaults:
|
defaults:
|
||||||
_controller: FrameworkBundle:Redirect:redirect
|
_controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController:redirectAction
|
||||||
route: sylius_shop_checkout_address
|
route: sylius_shop_checkout_address
|
||||||
|
|
||||||
sylius_shop_checkout_address:
|
sylius_shop_checkout_address:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue