Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [Magic Link Login] add placeholder to invalidEmail to return user email. #1145

Merged
merged 31 commits into from
Jul 25, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ce32ec7
add email to translation
warcooft Jul 17, 2024
9df5b50
update lang[id] add placheholder for email
warcooft Jul 17, 2024
50591b5
update lang[en] add placheholder for email
warcooft Jul 17, 2024
09a27a8
update test
warcooft Jul 18, 2024
1a76a6c
missing comma
warcooft Jul 18, 2024
829a327
lang: add temp lang
warcooft Jul 18, 2024
9889424
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
55b3475
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
6e76788
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
0711286
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
fa0416b
lang: add temp lang
warcooft Jul 18, 2024
a6f196b
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
2c59425
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
6080c95
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
cc5fb61
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
d4fa7dd
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
758cb25
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
2734645
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
b952676
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
6f7e9eb
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
ece0a3b
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
0f7a6ee
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
795eda0
'invalidEmail' => '(To be translated) Unable to verify the e…
warcooft Jul 18, 2024
20b7105
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
ba9ee48
lang: add temp lang [invalidEmail]
warcooft Jul 18, 2024
1829443
Escaping content for prevention of XSS attacks.
warcooft Jul 18, 2024
93d6177
add double quotes
warcooft Jul 19, 2024
b01d858
add double quotes
warcooft Jul 20, 2024
c80a6cc
escape errors content
warcooft Jul 20, 2024
1f4e260
add double quotation marks for all language.
warcooft Jul 22, 2024
a15e3fb
update all language.
warcooft Jul 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
missing comma
  • Loading branch information
warcooft authored Jul 18, 2024
commit 1a76a6c6ae9ab8db68115347c9ba9f4793fe55d3
2 changes: 1 addition & 1 deletion tests/Authentication/MagicLinkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function testMagicLinkSubmitBadEmail(): void
{
$email = 'foo@example.com';
$result = $this->post(route_to('magic-link'), [
'email' => $email
'email' => $email,
]);

$result->assertRedirectTo(route_to('magic-link'));
Expand Down
Loading