clean up social login verifications

This commit is contained in:
hackerESQ
2024-10-20 09:41:25 -05:00
parent 6ce9833e66
commit 5555e95e48
4 changed files with 33 additions and 46 deletions
@@ -41,7 +41,7 @@ class VerifyConnectedAccountNotification extends Notification implements ShouldQ
->greeting('Welcome back!')
->subject("Connect your $provider account with Investbrain")
->line("You recently attempted to log into an existing Investbrain account using $provider. To safeguard your Investbrain account, please confirm this was you by pressing the 'Connect $provider' button below:")
->action("Connect $provider", route('verify_connected_account', ['verification_id' => $this->verification_id]))
->action("Connect $provider", route('oauth.verify_connected_account', ['verification_id' => $this->verification_id]))
->line('If you do not recognize this activity, we recommend [changing your password]('.route('profile.show').') as soon as possible. Otherwise, you can disregard this message.');
}