cargo fmt

This commit is contained in:
jermz 2021-06-19 17:47:51 +10:00
parent 0b5348d3ea
commit 1b9017a92f
3 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,5 @@
use serde::{Deserialize, Serialize};
use chrono::prelude::*;
use serde::{Deserialize, Serialize};
use std::collections::HashSet;
#[derive(PartialEq, Eq, Debug, Serialize, Deserialize, Clone)]
@ -33,7 +33,6 @@ pub struct User {
pub ssh_pub_key: Option<String>,
pub wireguard_pub_key: Option<String>,
pub creation_date: chrono::NaiveDateTime,
}
impl Default for User {

View File

@ -240,7 +240,10 @@ impl BackendHandler for SqlBackendHandler {
request.first_name.map(Into::into).unwrap_or(Value::Null),
request.last_name.map(Into::into).unwrap_or(Value::Null),
request.ssh_pub_key.map(Into::into).unwrap_or(Value::Null),
request.wireguard_pub_key.map(Into::into).unwrap_or(Value::Null),
request
.wireguard_pub_key
.map(Into::into)
.unwrap_or(Value::Null),
chrono::Utc::now().naive_utc().into(),
password_hash.into(),
])

View File

@ -76,7 +76,10 @@ fn get_attribute(user: &User, attribute: &str) -> Result<Vec<String>> {
.clone()
.unwrap_or_else(|| user.user_id.clone())]),
"sshPubKey" => Ok(vec![user.ssh_pub_key.clone().unwrap_or("".to_string())]),
"wireguardPubKey" => Ok(vec![user.wireguard_pub_key.clone().unwrap_or("".to_string())]),
"wireguardPubKey" => Ok(vec![user
.wireguard_pub_key
.clone()
.unwrap_or("".to_string())]),
_ => bail!("Unsupported attribute: {}", attribute),
}
}