Fix warning

This commit is contained in:
ViViDboarder 2019-04-12 16:45:23 -07:00
parent 6ee352d35e
commit 381544813b
1 changed files with 11 additions and 4 deletions

View File

@ -44,9 +44,15 @@ fn get_existing_users(client: &mut bw_admin::Client) -> Result<HashSet<String>,
for user in all_users { for user in all_users {
user_emails.insert(user.get_email()); user_emails.insert(user.get_email());
if user.is_disabled() { if user.is_disabled() {
println!("Existing disabled user found with email: {}", user.get_email()); println!(
"Existing disabled user found with email: {}",
user.get_email()
);
} else { } else {
println!("Existing user or invite found with email: {}", user.get_email()); println!(
"Existing user or invite found with email: {}",
user.get_email()
);
} }
} }
@ -113,7 +119,8 @@ fn invite_from_ldap(
println!("User with email already exists: {}", user_email); println!("User with email already exists: {}", user_email);
} else { } else {
println!("Try to invite user: {}", user_email); println!("Try to invite user: {}", user_email);
let response = client.invite(user_email); // TODO: Validate response
let _response = client.invite(user_email);
num_users = num_users + 1; num_users = num_users + 1;
// println!("Invite response: {:?}", response); // println!("Invite response: {:?}", response);
} }
@ -122,7 +129,7 @@ fn invite_from_ldap(
// Maybe think about returning this value for some other use // Maybe think about returning this value for some other use
println!("Sent invites to {} user(s).", num_users); println!("Sent invites to {} user(s).", num_users);
}, }
Err(e) => { Err(e) => {
println!("Error: Failed to get existing users from Bitwarden"); println!("Error: Failed to get existing users from Bitwarden");
return Err(e); return Err(e);