2019-05-20 07:37:41 +02:00
|
|
|
<?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!
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-01-14 17:06:59 +01:00
|
|
|
Route::group(['middleware' => 'guest:api'], function () {
|
|
|
|
|
|
|
|
Route::post('login', 'UserController@login');
|
|
|
|
Route::post('checkuser', 'UserController@checkUser');
|
|
|
|
Route::post('register', 'UserController@register');
|
|
|
|
|
|
|
|
Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail');
|
|
|
|
Route::post('password/reset', 'Auth\ResetPasswordController@reset');
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::group(['middleware' => 'auth:api'], function() {
|
2019-05-20 07:37:41 +02:00
|
|
|
|
2019-05-29 11:04:12 +02:00
|
|
|
Route::post('logout', 'UserController@logout');
|
2020-01-23 23:02:54 +01:00
|
|
|
Route::patch('password', 'UserController@updatePassword');
|
|
|
|
Route::patch('user', 'UserController@update');
|
2019-05-29 11:04:12 +02:00
|
|
|
Route::get('user', 'UserController@getDetails');
|
2020-01-21 22:40:16 +01:00
|
|
|
|
2019-05-24 14:44:41 +02:00
|
|
|
Route::apiResource('twofaccounts', 'TwoFAccountController');
|
2020-01-24 22:37:48 +01:00
|
|
|
Route::get('twofaccounts/{twofaccount}/otp', 'TwoFAccountController@generateOTP')->name('twofaccounts.generateOTP');
|
2020-01-03 17:25:56 +01:00
|
|
|
Route::post('qrcode/decode', 'QrCodeController@decode');
|
2020-01-05 23:21:28 +01:00
|
|
|
Route::post('icon/upload', 'IconController@upload');
|
2020-01-08 15:24:34 +01:00
|
|
|
Route::delete('icon/delete/{icon}', 'IconController@delete');
|
2020-01-14 17:06:59 +01:00
|
|
|
|
2019-05-20 07:37:41 +02:00
|
|
|
});
|