Skip to content

Commit

Permalink
queue notification
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Dec 4, 2023
1 parent beeaedb commit 6dede82
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Notifications/ResetPassword.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@
namespace Cone\Root\Notifications;

use Illuminate\Auth\Notifications\ResetPassword as Notification;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Support\Facades\URL;

class ResetPassword extends Notification
class ResetPassword extends Notification implements ShouldQueue
{
use Queueable;

/**
* Get the reset URL for the given notifiable.
*/
Expand Down

0 comments on commit 6dede82

Please sign in to comment.