mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-03-18 04:40:54 -05:00
[PR #1689] [MERGED] Add support for hiding the sender's email address in Bitwarden Sends #6636
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/dani-garcia/vaultwarden/pull/1689
Author: @jjlin
Created: 5/12/2021
Status: ✅ Merged
Merged: 5/12/2021
Merged by: @dani-garcia
Base:
main← Head:hide-email📝 Commits (2)
d3449bfAdd support for hiding the sender's email address in Bitwarden Sends029008bAdd support for theSend Optionspolicy📊 Changes
12 files changed (+89 additions, -2 deletions)
View changed files
➕
migrations/mysql/2021-05-11-205202_add_hide_email/down.sql(+0 -0)➕
migrations/mysql/2021-05-11-205202_add_hide_email/up.sql(+2 -0)➕
migrations/postgresql/2021-05-11-205202_add_hide_email/down.sql(+0 -0)➕
migrations/postgresql/2021-05-11-205202_add_hide_email/up.sql(+2 -0)➕
migrations/sqlite/2021-05-11-205202_add_hide_email/down.sql(+0 -0)➕
migrations/sqlite/2021-05-11-205202_add_hide_email/up.sql(+2 -0)📝
src/api/core/sends.rs(+25 -1)📝
src/db/models/org_policy.rs(+34 -0)📝
src/db/models/send.rs(+21 -1)📝
src/db/schemas/mysql/schema.rs(+1 -0)📝
src/db/schemas/postgresql/schema.rs(+1 -0)📝
src/db/schemas/sqlite/schema.rs(+1 -0)📄 Description
Note: The original Vaultwarden implementation of Bitwarden Send would always
hide the email address, while the upstream implementation would always show it.
Also, add support for the
Send Optionspolicy.Upstream refs:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.