Merge pull request #4980 from turbo124/v5-develop
Bug fix for TwoFactorController
This commit is contained in:
commit
811d22c5cf
2 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ class TwoFactorController extends BaseController
|
|||
$secret = $google2fa->generateSecretKey();
|
||||
|
||||
$qr_code = $google2fa->getQRCodeGoogleUrl(
|
||||
config('ninja.app_name')
|
||||
config('ninja.app_name'),
|
||||
$user->email,
|
||||
$secret
|
||||
);
|
||||
|
|
|
|||
|
|
@ -177,6 +177,6 @@ Route::match(['get', 'post'], 'payment_webhook/{company_key}/{company_gateway_id
|
|||
->middleware(['guest', 'api_db'])
|
||||
->name('payment_webhook');
|
||||
|
||||
Route::post('postmark_webhook', 'PostMarkController@webhook');
|
||||
Route::post('api/v1/postmark_webhook', 'PostMarkController@webhook');
|
||||
|
||||
Route::fallback('BaseController@notFound');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue