mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-12 04:52:47 +01:00
fix invitations of new users when mail is disabled
If you add a new user that has already been Invited to another organization they will be Accepted automatically. This should not be possible because they cannot be Confirmed until they have completed their registration. It is also not necessary because their invitation will be accepted automatically once they register.
This commit is contained in:
parent
4289663a16
commit
ed6e852904
1 changed files with 5 additions and 6 deletions
|
@ -600,11 +600,7 @@ async fn send_invite(org_id: String, data: JsonUpcase<InviteData>, headers: Admi
|
||||||
|
|
||||||
for email in data.Emails.iter() {
|
for email in data.Emails.iter() {
|
||||||
let email = email.to_lowercase();
|
let email = email.to_lowercase();
|
||||||
let mut user_org_status = if CONFIG.mail_enabled() {
|
let mut user_org_status = UserOrgStatus::Invited as i32;
|
||||||
UserOrgStatus::Invited as i32
|
|
||||||
} else {
|
|
||||||
UserOrgStatus::Accepted as i32 // Automatically mark user as accepted if no email invites
|
|
||||||
};
|
|
||||||
let user = match User::find_by_mail(&email, &conn).await {
|
let user = match User::find_by_mail(&email, &conn).await {
|
||||||
None => {
|
None => {
|
||||||
if !CONFIG.invitations_allowed() {
|
if !CONFIG.invitations_allowed() {
|
||||||
|
@ -622,13 +618,16 @@ async fn send_invite(org_id: String, data: JsonUpcase<InviteData>, headers: Admi
|
||||||
|
|
||||||
let mut user = User::new(email.clone());
|
let mut user = User::new(email.clone());
|
||||||
user.save(&conn).await?;
|
user.save(&conn).await?;
|
||||||
user_org_status = UserOrgStatus::Invited as i32;
|
|
||||||
user
|
user
|
||||||
}
|
}
|
||||||
Some(user) => {
|
Some(user) => {
|
||||||
if UserOrganization::find_by_user_and_org(&user.uuid, &org_id, &conn).await.is_some() {
|
if UserOrganization::find_by_user_and_org(&user.uuid, &org_id, &conn).await.is_some() {
|
||||||
err!(format!("User already in organization: {}", email))
|
err!(format!("User already in organization: {}", email))
|
||||||
} else {
|
} else {
|
||||||
|
// automatically accept existing users if mail is disabled
|
||||||
|
if !CONFIG.mail_enabled() && !user.password_hash.is_empty() {
|
||||||
|
user_org_status = UserOrgStatus::Accepted as i32;
|
||||||
|
}
|
||||||
user
|
user
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue