diff --git a/src/Elcodi/Admin/PluginBundle/Controller/PluginController.php b/src/Elcodi/Admin/PluginBundle/Controller/PluginController.php index 39759ae4..13c34e76 100644 --- a/src/Elcodi/Admin/PluginBundle/Controller/PluginController.php +++ b/src/Elcodi/Admin/PluginBundle/Controller/PluginController.php @@ -49,6 +49,28 @@ class PluginController extends AbstractAdminController * name = "admin_plugin_list", * methods = {"GET"} * ) + * + * @Route( + * path = "s/payment", + * name = "admin_plugin_payment_list", + * defaults = { "category": "payment" }, + * methods = {"GET"} + * ) + * + * @Route( + * path = "s/shipping", + * name = "admin_plugin_shipping_list", + * defaults = { "category": "shipping" }, + * methods = {"GET"} + * ) + * + * @Route( + * path = "s/social", + * name = "admin_plugin_social_list", + * defaults = { "category": "social" }, + * methods = {"GET"} + * ) + * * @Template */ public function listAction($category = null)