Parcourir la source

Correction route switch-merchant

reduction
Guillaume il y a 4 ans
Parent
révision
a0c09c4d96
3 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. +1
    -1
      ShopBundle/Controller/Admin/MerchantController.php
  2. +2
    -2
      ShopBundle/Resources/config/shop_routes.yaml
  3. +1
    -1
      ShopBundle/Resources/views/backend/default/layout.html.twig

+ 1
- 1
ShopBundle/Controller/Admin/MerchantController.php Voir le fichier

@@ -101,7 +101,7 @@ class MerchantController extends AdminController
$em->flush();
}
}
return $this->redirect('admin/dashboard') ;
return $this->redirect('/admin/dashboard') ;
}

}

+ 2
- 2
ShopBundle/Resources/config/shop_routes.yaml Voir le fichier

@@ -1,6 +1,6 @@

switch_merchant:
path: /switch-merchant
admin_switch_merchant:
path: /admin/switch-merchant
controller: Lc\ShopBundle\Controller\Admin\MerchantController::switchMerchantAction

lc_api:

+ 1
- 1
ShopBundle/Resources/views/backend/default/layout.html.twig Voir le fichier

@@ -74,7 +74,7 @@

<div id="switch-merchant">
{% if is_granted('ROLE_ADMIN') %}
<form action="{{ path('switch_merchant') }}" method="post">
<form action="{{ path('admin_switch_merchant') }}" method="post">
<select class="form-control" name="id_merchant">
{% for merchant in merchants %}
<option value="{{merchant.id}}" {% if current_merchant and current_merchant.id == merchant.id %}selected="selected"{% endif %}>{{merchant.title}}</option>

Chargement…
Annuler
Enregistrer