summaryrefslogtreecommitdiff
path: root/config/routes.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes.php')
-rw-r--r--config/routes.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/routes.php b/config/routes.php
index e498b2b5..f8b9feed 100644
--- a/config/routes.php
+++ b/config/routes.php
@@ -32,11 +32,11 @@ $route->addGroup(
function (RouteCollector $route) {
// Schedule
$route->addGroup(
- '/schedule',
+ '-schedule',
function (RouteCollector $route) {
$route->get('', 'Admin\\Schedule\\ImportSchedule@index');
- $route->post('/load', 'Admin\\Schedule\\ImportSchedule@loadSchedule');
- $route->post('/import', 'Admin\\Schedule\\ImportSchedule@importSchedule');
+ $route->post('-load', 'Admin\\Schedule\\ImportSchedule@loadSchedule');
+ $route->post('-import', 'Admin\\Schedule\\ImportSchedule@importSchedule');
}
);
}