WebAuthn icon indicating copy to clipboard operation
WebAuthn copied to clipboard

[2.x] WebAuthn Recovery by email

Open Samuel-Bie opened this issue 2 years ago • 10 comments

Please check these requirements

  • [X] This feature helps everyone using this package
  • [X] It's feasible and maintainable
  • [X] It's non breaking
  • [ ] I issued a PR with the implementation (optional)

Description

Hi dev team, i have been using the old package Larapass i guess, it was working perfectly.

What about implementing it in this also?

Code sample

<?php

namespace App\Http\Controllers\Auth;

use App\Http\Controllers\Controller;
use DarkGhostHunter\Larapass\Http\SendsWebAuthnRecoveryEmail;

class WebAuthnDeviceLostController extends Controller


and 

<?php

namespace App\Http\Controllers\Auth;

use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use DarkGhostHunter\Larapass\Http\RecoversWebAuthn;

class WebAuthnRecoveryController extends Controller
{
    use RecoversWebAuthn;

Samuel-Bie avatar Jan 23 '23 20:01 Samuel-Bie