refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
14
routes/special.php
Normal file
14
routes/special.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/settings/emailchange1', 'Auth\EmailChangeController@showLoginFormSpecial');
|
||||
|
||||
Route::middleware('throttle:30,1')->group(function () {
|
||||
Route::post('/settings/emailchange1', 'Auth\EmailChangeController@login');
|
||||
});
|
||||
|
||||
Route::middleware(['auth', '2fa', 'throttle:5,1'])->group(function () {
|
||||
Route::get('/settings/emailchange2', 'Auth\EmailChangeController@index');
|
||||
Route::post('/settings/emailchange2', 'Auth\EmailChangeController@save');
|
||||
});
|
||||
Reference in New Issue
Block a user