Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'module/Auth/config/module.config.php')
-rw-r--r--module/Auth/config/module.config.php59
1 files changed, 0 insertions, 59 deletions
diff --git a/module/Auth/config/module.config.php b/module/Auth/config/module.config.php
deleted file mode 100644
index 0e01fa6..0000000
--- a/module/Auth/config/module.config.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-
-/**
- *
- * bareos-webui - Bareos Web-Frontend
- *
- * @link https://github.com/bareos/bareos-webui for the canonical source repository
- * @copyright Copyright (c) 2013-2014 Bareos GmbH & Co. KG (http://www.bareos.org/)
- * @license GNU Affero General Public License (http://www.gnu.org/licenses/)
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-return array(
-
- 'controllers' => array(
- 'invokables' => array(
- 'Auth\Controller\Auth' => 'Auth\Controller\AuthController',
- ),
- ),
-
- 'router' => array(
- 'routes' => array(
- 'auth' => array(
- 'type' => 'segment',
- 'options' => array(
- 'route' => '/auth[/][:action][/:id]',
- 'constraints' => array(
- 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
- 'id' => '[0-9]+',
- ),
- 'defaults' => array(
- 'controller' => 'Auth\Controller\Auth',
- 'action' => 'index',
- ),
- ),
- ),
- ),
- ),
-
- 'view_manager' => array(
- 'template_path_stack' => array(
- 'auth' => __DIR__ . '/../view',
- ),
- ),
-
-);