Browse Source

Remove default method from routes

tags/v0.1.0
Gerben 5 years ago
parent
commit
2f115885fb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      appinfo/routes.php

+ 2
- 2
appinfo/routes.php View File

@@ -2,9 +2,9 @@

return [
'routes' => [
['name' => 'timeGate#timeGate', 'url' => '/timegate/{url}', 'verb' => 'GET',
['name' => 'timeGate#timeGate', 'url' => '/timegate/{url}',
'requirements' => array('url' => '.+')],
['name' => 'timeMap#timeMap', 'url' => '/timemap/{url}', 'verb' => 'GET',
['name' => 'timeMap#timeMap', 'url' => '/timemap/{url}',
'requirements' => array('url' => '.+')],
]
];

Loading…
Cancel
Save