mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-05-02 21:34:36 +02:00
22 lines
667 B
PHP
22 lines
667 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use DarkGhostHunter\Larapass\Http\RegistersWebAuthn;
|
|
|
|
class WebAuthnRegisterController extends Controller
|
|
{
|
|
use RegistersWebAuthn;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| WebAuthn Registration Controller
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This controller receives an user request to register a device and also
|
|
| verifies the registration. If everything goes ok, the credential is
|
|
| persisted into the application, otherwise it will signal failure.
|
|
|
|
|
*/
|
|
} |