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 () {
|
|
|
|
|
2020-03-04 12:59:55 +01:00
|
|
|
Route::post('login', 'Auth\LoginController@login');
|
2020-03-04 21:49:45 +01:00
|
|
|
Route::post('checkuser', 'Auth\RegisterController@checkUser');
|
|
|
|
Route::post('register', 'Auth\RegisterController@register');
|
2020-01-14 17:06:59 +01:00
|
|
|
|
2020-10-12 14:00:09 +02:00
|
|
|
Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail')->middleware('AvoidResetPassword');
|
2020-03-06 15:07:09 +01:00
|
|
|
Route::post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.reset');
|
2020-01-14 17:06:59 +01:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::group(['middleware' => 'auth:api'], function() {
|
2019-05-20 07:37:41 +02:00
|
|
|
|
2020-03-04 12:59:55 +01:00
|
|
|
Route::post('logout', 'Auth\LoginController@logout');
|
2020-01-21 22:40:16 +01:00
|
|
|
|
2020-03-21 23:12:29 +01:00
|
|
|
Route::prefix('settings')->group(function () {
|
|
|
|
Route::get('account', 'Settings\AccountController@show');
|
|
|
|
Route::patch('account', 'Settings\AccountController@update');
|
|
|
|
Route::patch('password', 'Settings\PasswordController@update');
|
|
|
|
Route::get('options', 'Settings\OptionController@index');
|
|
|
|
Route::post('options', 'Settings\OptionController@store');
|
|
|
|
});
|
2020-02-27 12:18:46 +01:00
|
|
|
|
2020-01-31 23:05:06 +01:00
|
|
|
Route::delete('twofaccounts/batch', 'TwoFAccountController@batchDestroy');
|
2020-03-27 22:36:01 +01:00
|
|
|
Route::patch('twofaccounts/reorder', 'TwoFAccountController@reorder');
|
2019-05-24 14:44:41 +02:00
|
|
|
Route::apiResource('twofaccounts', 'TwoFAccountController');
|
2020-02-04 17:06:11 +01:00
|
|
|
Route::post('twofaccounts/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
|
|
|
});
|