diff options
author | Camil Staps | 2015-05-10 18:56:16 +0300 |
---|---|---|
committer | Camil Staps | 2015-05-10 18:56:16 +0300 |
commit | 03d9e3313fb01033a95e3d09a75be3482cabf032 (patch) | |
tree | dd3ce9fdf6a7283b4cec1e1e75727873b7df17cf /src/routes.php | |
parent | LoginException; RedirectException (diff) |
UserTokens
Diffstat (limited to 'src/routes.php')
-rw-r--r-- | src/routes.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/routes.php b/src/routes.php index 027603c..4935f7c 100644 --- a/src/routes.php +++ b/src/routes.php @@ -31,6 +31,9 @@ Route::group(array('https'), function() { Route::resource('user', 'CamilStaps\BotleaguesApi\UserController', ['except' => ['index', 'show', 'create','edit','store']]); + + Route::resource('user_token', 'CamilStaps\BotleaguesApi\UserTokenController', + ['only' => ['index', 'show', 'store']]); Route::group(array('before' => 'administrator'), function() { |