From aa035628a965b4be243abc897a25ce9b055de1d2 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 30 Mar 2018 01:10:41 +0200 Subject: [PATCH] app/config/services.php: add user-settings route. override the profile route because it is not implemented. --- app/config/services.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/config/services.php b/app/config/services.php index 260c317..a5db77b 100644 --- a/app/config/services.php +++ b/app/config/services.php @@ -111,10 +111,10 @@ $di->setShared('router', function() { 'action' => 'oauth' ))->setName('oauth'); - $router->add('/user', array( + $router->add('/settings', array( 'controller' => 'user', - 'action' => 'profile', - ))->setName('profile'); + 'action' => 'settings', + ))->setName('user-settings'); return $router; });