diff options
author | Camil Staps | 2015-05-12 22:44:16 +0200 |
---|---|---|
committer | Camil Staps | 2015-05-12 22:44:16 +0200 |
commit | a0bb2d17c662231ab45ab3910d6a8cafc01bd203 (patch) | |
tree | f72b9e7b99111030d1f21982a8d11953ce98a6dc /src/routes.php | |
parent | Access-control-allow-{methods,headers} headers (diff) |
Cleanup
Diffstat (limited to 'src/routes.php')
-rw-r--r-- | src/routes.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/routes.php b/src/routes.php index d44ac20..13b73da 100644 --- a/src/routes.php +++ b/src/routes.php @@ -2,8 +2,7 @@ Route::group(array('https'), function() { Route::api(['version' => 'v1', 'protected' => false], function () { - - Route::get('user/login', 'CamilStaps\BotleaguesApi\UserController@login'); + Route::resource('bot', 'CamilStaps\BotleaguesApi\BotController', ['only' => ['index','show']]); |