]> Untitled Git - lemmy.git/commitdiff
Running cargo +nightly fmt.
authorDessalines <tyhou13@gmx.com>
Tue, 1 Sep 2020 21:44:56 +0000 (16:44 -0500)
committerDessalines <tyhou13@gmx.com>
Tue, 1 Sep 2020 21:44:56 +0000 (16:44 -0500)
server/lemmy_db/src/comment.rs
server/lemmy_db/src/password_reset_request.rs
server/lemmy_db/src/schema.rs

index 9bf4c2a5b4e829e07349e0ab09a64c46530e39ce..76fa5ea03e20975d7425aeac697271eb41f425e7 100644 (file)
@@ -1,9 +1,14 @@
-use super::{post::Post};
-use crate::schema::{comment, comment_like, comment_saved};
-use url::{ParseError, Url};
+use super::post::Post;
+use crate::{
+  naive_now,
+  schema::{comment, comment_like, comment_saved},
+  Crud,
+  Likeable,
+  Saveable,
+};
 use diesel::{dsl::*, result::Error, *};
 use serde::{Deserialize, Serialize};
-use crate::{Crud, naive_now, Likeable, Saveable};
+use url::{ParseError, Url};
 
 // WITH RECURSIVE MyTree AS (
 //     SELECT * FROM comment WHERE parent_id IS NULL
@@ -252,8 +257,16 @@ impl Saveable<CommentSavedForm> for CommentSaved {
 
 #[cfg(test)]
 mod tests {
-  use crate::{comment::*, community::*, post::*, tests::establish_unpooled_connection, user::*, SortType, ListingType};
-  use crate::Crud;
+  use crate::{
+    comment::*,
+    community::*,
+    post::*,
+    tests::establish_unpooled_connection,
+    user::*,
+    Crud,
+    ListingType,
+    SortType,
+  };
 
   #[test]
   fn test_crud() {
index a53358854d60f880f900d86c3d66535726f9b71c..0b0587439fd7da22499a5d7f9651e71a581669c1 100644 (file)
@@ -78,10 +78,14 @@ impl PasswordResetRequest {
 
 #[cfg(test)]
 mod tests {
-  use super::{super::user::*};
-  use crate::{tests::establish_unpooled_connection, ListingType, SortType};
-  use crate::password_reset_request::PasswordResetRequest;
-  use crate::Crud;
+  use super::super::user::*;
+  use crate::{
+    password_reset_request::PasswordResetRequest,
+    tests::establish_unpooled_connection,
+    Crud,
+    ListingType,
+    SortType,
+  };
 
   #[test]
   fn test_crud() {
index a189dbced4fa00d9bac8ff5cf8223db5efe14004..c446edd9f27e72f2add810f181ef57b093a0c36d 100644 (file)
@@ -523,36 +523,36 @@ joinable!(user_mention -> comment (comment_id));
 joinable!(user_mention -> user_ (recipient_id));
 
 allow_tables_to_appear_in_same_query!(
-    activity,
-    category,
-    comment,
-    comment_aggregates_fast,
-    comment_like,
-    comment_saved,
-    community,
-    community_aggregates_fast,
-    community_follower,
-    community_moderator,
-    community_user_ban,
-    mod_add,
-    mod_add_community,
-    mod_ban,
-    mod_ban_from_community,
-    mod_lock_post,
-    mod_remove_comment,
-    mod_remove_community,
-    mod_remove_post,
-    mod_sticky_post,
-    password_reset_request,
-    post,
-    post_aggregates_fast,
-    post_like,
-    post_read,
-    post_saved,
-    private_message,
-    site,
-    user_,
-    user_ban,
-    user_fast,
-    user_mention,
+  activity,
+  category,
+  comment,
+  comment_aggregates_fast,
+  comment_like,
+  comment_saved,
+  community,
+  community_aggregates_fast,
+  community_follower,
+  community_moderator,
+  community_user_ban,
+  mod_add,
+  mod_add_community,
+  mod_ban,
+  mod_ban_from_community,
+  mod_lock_post,
+  mod_remove_comment,
+  mod_remove_community,
+  mod_remove_post,
+  mod_sticky_post,
+  password_reset_request,
+  post,
+  post_aggregates_fast,
+  post_like,
+  post_read,
+  post_saved,
+  private_message,
+  site,
+  user_,
+  user_ban,
+  user_fast,
+  user_mention,
 );