aboutsummaryrefslogtreecommitdiff
path: root/src/routes.php
diff options
context:
space:
mode:
authorCamil Staps2015-05-13 13:43:16 +0200
committerCamil Staps2015-05-13 13:43:16 +0200
commit497549300ce8231f5b25c93a4f95aeb35baad027 (patch)
treef50e0dcf8120f7589826f9f2932f4d7d8f9ccfaf /src/routes.php
parentFixed security issue: safer random token generator using openssl (diff)
Password reminders start
Diffstat (limited to 'src/routes.php')
-rw-r--r--src/routes.php3
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 () {