diff options
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 13b73da..8ec4e38 100644 --- a/src/routes.php +++ b/src/routes.php @@ -21,6 +21,9 @@ Route::group(array('https'), function() { Route::resource('user', 'CamilStaps\BotleaguesApi\UserController', ['only' => ['index','show','store']]); + Route::resource('password_reminder', 'CamilStaps\BotleaguesApi\PasswordReminderController', + ['only' => ['store']]); + }); Route::api(['version' => 'v1', 'protected' => true, 'providers' => 'basic'], function () { |