-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- match Bitwarden behaviour - add a different segment in mails for Device Name
- Loading branch information
Showing
17 changed files
with
60 additions
and
20 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
migrations/mysql/2024-09-04-091351_use_device_type_for_mails/down.sql
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 @@ | ||
ALTER TABLE `twofactor_incomplete` DROP COLUMN `device_type`; |
1 change: 1 addition & 0 deletions
1
migrations/mysql/2024-09-04-091351_use_device_type_for_mails/up.sql
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 @@ | ||
ALTER TABLE `twofactor_incomplete` ADD COLUMN `device_type` INTEGER NOT NULL; |
1 change: 1 addition & 0 deletions
1
migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/down.sql
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 @@ | ||
ALTER TABLE `twofactor_incomplete` DROP COLUMN `device_type`; |
1 change: 1 addition & 0 deletions
1
migrations/postgresql/2024-09-04-091351_use_device_type_for_mails/up.sql
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 @@ | ||
ALTER TABLE `twofactor_incomplete` ADD COLUMN `device_type` INTEGER NOT NULL; |
1 change: 1 addition & 0 deletions
1
migrations/sqlite/2024-09-04-091351_use_device_type_for_mails/down.sql
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 @@ | ||
ALTER TABLE `twofactor_incomplete` DROP COLUMN `device_type`; |
1 change: 1 addition & 0 deletions
1
migrations/sqlite/2024-09-04-091351_use_device_type_for_mails/up.sql
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 @@ | ||
ALTER TABLE `twofactor_incomplete` ADD COLUMN `device_type` INTEGER NOT NULL; |
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
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
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,10 +1,11 @@ | ||
Incomplete Two-Step Login From {{{device}}} | ||
Incomplete Two-Step Login From {{{device_name}}} | ||
<!----------------> | ||
Someone attempted to log into your account with the correct master password, but did not provide the correct token or action required to complete the two-step login process within {{time_limit}} minutes of the initial login attempt. | ||
|
||
* Date: {{datetime}} | ||
* IP Address: {{ip}} | ||
* Device Type: {{device}} | ||
* Device Name: {{device_name}} | ||
* Device Type: {{device_type}} | ||
|
||
If this was not you or someone you authorized, then you should change your master password as soon as possible, as it is likely to be compromised. | ||
{{> email/email_footer_text }} |
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,10 +1,11 @@ | ||
New Device Logged In From {{{device}}} | ||
New Device Logged In From {{{device_name}}} | ||
<!----------------> | ||
Your account was just logged into from a new device. | ||
|
||
* Date: {{datetime}} | ||
* IP Address: {{ip}} | ||
* Device Type: {{device}} | ||
* Device Name: {{device_name}} | ||
* Device Type: {{device_type}} | ||
|
||
You can deauthorize all devices that have access to your account from the web vault ( {{url}} ) under Settings > My Account > Deauthorize Sessions. | ||
{{> email/email_footer_text }} | ||
{{> email/email_footer_text }} |
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