diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 14:43:24 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 14:43:24 +0200 |
commit | 879348c120e72aee2f8f9d50ee0b764627ab3607 (patch) | |
tree | 8f3dd5d338610af8f9d14cb7237646255b3356bf /src | |
parent | d35ec476209f85631d16fb78553af8dad33eb2e0 (diff) |
Fixs with clippy
Diffstat (limited to 'src')
-rw-r--r-- | src/graphql/mutation.rs | 2 | ||||
-rw-r--r-- | src/graphql/types/jwt.rs | 2 | ||||
-rw-r--r-- | src/graphql/types/notification.rs | 6 | ||||
-rw-r--r-- | src/graphql/types/user.rs | 6 |
4 files changed, 10 insertions, 6 deletions
diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index dfffad8..6e0a265 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -284,7 +284,7 @@ impl Mutation { let mut notification_ids = vec![]; for id in &position_ids { - let notification = notification::Notification::new(client, alert.id, *id) + let notification = notification::Notification::insert_db(client, alert.id, *id) .await .unwrap(); notification_ids.push(notification); diff --git a/src/graphql/types/jwt.rs b/src/graphql/types/jwt.rs index df815aa..d27c6c3 100644 --- a/src/graphql/types/jwt.rs +++ b/src/graphql/types/jwt.rs @@ -111,7 +111,7 @@ where } _ => { eprintln!("{err:?}"); - return AppError::Unauthorized; + AppError::Unauthorized } })?; diff --git a/src/graphql/types/notification.rs b/src/graphql/types/notification.rs index a8c327e..6a14d71 100644 --- a/src/graphql/types/notification.rs +++ b/src/graphql/types/notification.rs @@ -20,7 +20,11 @@ pub struct Notification { impl Notification { /// Create a new notification into the database from an alert_id and a position_id. /// Returns the new ID. - pub async fn new(client: &Client, alert_id: i32, position_id: i32) -> Result<i32, AppError> { + pub async fn insert_db( + client: &Client, + alert_id: i32, + position_id: i32, + ) -> Result<i32, AppError> { match client .query( "INSERT INTO notifications(alert_id, position_id) diff --git a/src/graphql/types/user.rs b/src/graphql/types/user.rs index 09404ec..798fd8c 100644 --- a/src/graphql/types/user.rs +++ b/src/graphql/types/user.rs @@ -32,11 +32,11 @@ impl User { } async fn name(&self) -> String { - self.name.clone().unwrap_or(String::default()) + self.name.clone().unwrap_or_default() } async fn address(&self) -> String { - self.address.clone().unwrap_or(String::default()) + self.address.clone().unwrap_or_default() } async fn notification_token(&self) -> String { @@ -150,7 +150,7 @@ pub async fn get_user_by_id<'ctx>(ctx: &Context<'ctx>, id: i32) -> Result<User, }) .collect(); - if users.len() == 0 { + if users.is_empty() { return Err("Not found".to_string()); } |