mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 04:24:01 +00:00
b4c257b2d0
added send reset link method updated jwt expire to one week added seeder
36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| API Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register API routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| is assigned the "api" middleware group. Enjoy building your API!
|
|
|
|
|
*/
|
|
|
|
//Route::middleware('auth:api')->get('/user', function (Request $request) {
|
|
// return $request->user();
|
|
//});
|
|
|
|
Route::post('register', 'AuthController@register');
|
|
Route::post('login', 'AuthController@login');
|
|
Route::post('password/recover', 'AuthController@recover');
|
|
|
|
|
|
Route::post('send-verification', 'AuthController@sendVerification');
|
|
Route::post('verify', 'AuthController@verifyUser');
|
|
|
|
|
|
|
|
Route::group(['middleware' => ['jwt.auth']], function() {
|
|
Route::get('logout', 'AuthController@logout');
|
|
Route::put('user', 'AuthController@updateUser');
|
|
Route::get('test', function(){
|
|
return response()->json(['foo'=>'bar']);
|
|
});
|
|
}); |