You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by ma...@apache.org on 2020/06/05 20:57:13 UTC

[netbeans-tools] branch master updated: Configuration contains core application logic so realign it with implementation

This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new 41a6277  Configuration contains core application logic so realign it with implementation
41a6277 is described below

commit 41a627787bfa8c5c23aef9e5807b86cd8f2a5410
Author: Matthias Bläsing <mb...@doppel-helix.eu>
AuthorDate: Fri Jun 5 22:54:24 2020 +0200

    Configuration contains core application logic so realign it with implementation
---
 pp3/module/Application/config/module.config.php.dist | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/pp3/module/Application/config/module.config.php.dist b/pp3/module/Application/config/module.config.php.dist
index b7bd6bd..33eb0be 100755
--- a/pp3/module/Application/config/module.config.php.dist
+++ b/pp3/module/Application/config/module.config.php.dist
@@ -80,7 +80,7 @@ return array(
             'catalogue' => array(
                 'type' => 'segment',
                 'options' => array(
-                    'route' => '/catalogue[/][:action]',
+                    'route' => '/catalogue[/][:action][/:pathParam][/:pathParam2]',
                     'constraints' => array(
                         'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                     ),
@@ -171,10 +171,24 @@ return array(
                     'defaults' => array(
                         '__NAMESPACE__' => 'Application\Controller',
                         'controller' => 'Login',
-                        'action' => 'request',
+                        'action' => 'index',
                     ),
                 ),                
-            ),       
+            ),
+            'verification-log' => array(
+                'type' => 'segment',
+                'options' => array(
+                    'route' => '/verification-log[/][:action]',
+                    'constraints' => array(
+                        'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
+                    ),
+                    'defaults' => array(
+                        '__NAMESPACE__' => 'Application\Controller',
+                        'controller' => 'Index',
+                        'action' => 'verification-log',
+                    ),
+                ),
+            ),
         ),
     ),
     'service_manager' => array(


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists