2FAuth/routes/api.php

55 lines
2.3 KiB
PHP
Raw Normal View History

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 () {
2021-09-18 00:00:50 +02:00
Route::post('auth/login', 'Auth\LoginController@login');
2020-03-04 21:49:45 +01:00
Route::post('checkuser', 'Auth\RegisterController@checkUser');
2021-09-18 00:00:50 +02:00
Route::post('auth/register', 'Auth\RegisterController@register');
2020-01-14 17:06:59 +01:00
Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail')->middleware('AvoidResetPassword');
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
2021-09-18 00:00:50 +02:00
Route::post('auth/logout', 'Auth\LoginController@logout');
2020-01-21 22:40:16 +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');
});
Route::delete('twofaccounts/batch', 'TwoFAccountController@batchDestroy');
2021-09-18 00:00:50 +02:00
Route::patch('twofaccounts/sort-order', 'TwoFAccountController@reorder');
Route::post('twofaccounts/preview', 'TwoFAccountController@preview');
2021-09-18 00:00:50 +02:00
Route::get('twofaccounts/{twofaccount}/qrcode', 'QrCodeController@show');
Route::get('twofaccounts/count', 'TwoFAccountController@count');
2021-09-18 00:00:50 +02:00
Route::get('twofaccounts/{id}/otp', 'TwoFAccountController@otp')->where('id', '[0-9]+');;
Route::post('twofaccounts/otp', 'TwoFAccountController@otp');
Route::apiResource('twofaccounts', 'TwoFAccountController');
Route::patch('group/accounts', 'GroupController@associateAccounts');
Route::apiResource('groups', 'GroupController');
2021-09-18 00:00:50 +02:00
// Done
2020-01-03 17:25:56 +01:00
Route::post('qrcode/decode', 'QrCodeController@decode');
2021-09-18 00:00:50 +02:00
Route::post('icons', 'IconController@upload');
Route::delete('icons/{icon}', 'IconController@delete');
2020-01-14 17:06:59 +01:00
2019-05-20 07:37:41 +02:00
});