-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from kurozumi/fix-email-verified
Auth0のDatabase Connections対応
- Loading branch information
Showing
8 changed files
with
105 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
plguin.social_login.admin.config.title: 'ソーシャルログイン' | ||
plguin.social_login.admin.config.sub_title: '設定' | ||
plguin.social_login.admin.setting.title: 'Auth0設定' | ||
plguin.social_login.admin.client_id.label: 'Client ID' | ||
plguin.social_login.admin.client_secret.label: 'Client Secret' | ||
plguin.social_login.admin.custom_domain.label: 'Domain' | ||
plugin: | ||
social_login: | ||
admin: | ||
config: | ||
title: 'ソーシャルログイン' | ||
sub_title: '設定' | ||
setting: | ||
title: 'Auth0設定' | ||
client_id: | ||
label: 'Client ID' | ||
client_secret: | ||
label: 'Client Secret' | ||
custom_domain: | ||
label: 'Domain' | ||
|
||
front: | ||
email_verified: 'メールを送信しました。アカウントを認証してください。' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of Auth0 for EC-CUBE | ||
* | ||
* Copyright(c) Akira Kurozumi <info@a-zumi.net> | ||
* | ||
* https://a-zumi.net | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Plugin\Auth0\Security\Exception; | ||
|
||
use KnpU\OAuth2ClientBundle\Security\Exception\FinishRegistrationException; | ||
|
||
class EmailVerifiedException extends FinishRegistrationException | ||
{ | ||
public function getMessageKey(): string | ||
{ | ||
return 'You need to verify your email address.'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters