Browse Source
Merge pull request #1460 from jjlin/invitation-org-name
Fix custom org name in invitation confirmation email
pull/1463/head
Mathijs van Veluw
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/api/core/organizations.rs
|
|
@ -655,7 +655,7 @@ fn accept_invite(_org_id: String, _org_user_id: String, data: JsonUpcase<AcceptD |
|
|
|
} |
|
|
|
|
|
|
|
if CONFIG.mail_enabled() { |
|
|
|
let mut org_name = String::from("bitwarden_rs"); |
|
|
|
let mut org_name = CONFIG.invitation_org_name(); |
|
|
|
if let Some(org_id) = &claims.org_id { |
|
|
|
org_name = match Organization::find_by_uuid(&org_id, &conn) { |
|
|
|
Some(org) => org.name, |
|
|
|