mov: renamed 'view.index' to 'view.home' | upd: config.routes/router.controller.redirect (redirect is now 'home' not 'homepage')

This commit is contained in:
xdrm-brackets 2017-11-28 16:48:59 +01:00
parent 6da4f911ae
commit 8d5806710b
3 changed files with 3 additions and 3 deletions

View File

@ -18,8 +18,8 @@
/* CALL /* CALL
* *
*/ */
public function homepage(){ public function home(){
header('Location: /homepage/'); header('Location: /home/');
} }
/* POST-CALL /* POST-CALL

View File

@ -25,7 +25,7 @@
"/{any}": { "/{any}": {
"methods": ["GET"], "methods": ["GET"],
"controller": "redirect:homepage", "controller": "redirect:home",
"arguments": { "arguments": {
"any": ".*" "any": ".*"
} }