Skip to content

Instantly share code, notes, and snippets.

@earth774
Created March 14, 2019 14:36
Show Gist options
  • Save earth774/333a01ee58443015b2d76cbe541dddde to your computer and use it in GitHub Desktop.
Save earth774/333a01ee58443015b2d76cbe541dddde to your computer and use it in GitHub Desktop.
route for forgot password and reset password
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It is a breeze. Simply tell Lumen the URIs it should respond to
| and give it the Closure to call when that URI is requested.
|
*/
$router->get('/', function () use ($router) {
return $router->app->version();
});
$router->group(['prefix' => 'api/v1'], function ($router) {
// Users
$router->post('user/register', 'UserController@register');
$router->post('user/login', ['uses' => 'UserController@login']);
$router->post('user/forgot_password', 'UserController@ForgotPassword');
});
$router->get('/user/reset_password/{rpk}', 'UserController@resetPassword');
$router->group(['prefix' => 'api/v1', 'middleware' => 'jwt.auth'], function ($router) {
$router->get('test', 'UserController@MakeData');
});
@Gideonshaz
Copy link

Can you tell me how to use this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment