diff --git a/core/lib/Thelia/Config/Resources/routing/admin.xml b/core/lib/Thelia/Config/Resources/routing/admin.xml
index e8262117b..15dd8acd0 100755
--- a/core/lib/Thelia/Config/Resources/routing/admin.xml
+++ b/core/lib/Thelia/Config/Resources/routing/admin.xml
@@ -31,6 +31,14 @@
Thelia\Controller\Admin\CategoryController::defaultAction
+
+
+
+ Thelia\Controller\Admin\CustomerController::indexAction
+
+
+
+
diff --git a/core/lib/Thelia/Controller/Admin/CustomerController.php b/core/lib/Thelia/Controller/Admin/CustomerController.php
new file mode 100644
index 000000000..eabfee0ce
--- /dev/null
+++ b/core/lib/Thelia/Controller/Admin/CustomerController.php
@@ -0,0 +1,40 @@
+. */
+/* */
+/*************************************************************************************/
+
+namespace Thelia\Controller\Admin;
+
+
+/**
+ * Class CustomerController
+ * @package Thelia\Controller\Admin
+ * @author Manuel Raynaud
+ */
+class CustomerController extends BaseAdminController
+{
+ public function indexAction()
+ {
+ if (null !== $response = $this->checkAuth("admin.customers.view")) return $response;
+
+ return $this->render("customers");
+ }
+}
\ No newline at end of file