]> Untitled Git - lemmy.git/commitdiff
Running cargo fmt.
authorDessalines <tyhou13@gmx.com>
Tue, 15 Oct 2019 22:10:42 +0000 (15:10 -0700)
committerDessalines <tyhou13@gmx.com>
Tue, 15 Oct 2019 22:10:42 +0000 (15:10 -0700)
server/src/api/user.rs
server/src/schema.rs

index 2fc0a92ca241ba9980d326f0c1a656943b668593..b0ed5a4bb5dd3981008bc4971d88108fe7db0300 100644 (file)
@@ -602,7 +602,17 @@ impl Perform<LoginResponse> for Oper<DeleteAccount> {
     let user_id = claims.id;
 
     // Comments
-    let comments = CommentView::list(&conn, &SortType::New, None, Some(user_id), None, None, false, None, Some(std::i64::MAX))?;
+    let comments = CommentView::list(
+      &conn,
+      &SortType::New,
+      None,
+      Some(user_id),
+      None,
+      None,
+      false,
+      None,
+      Some(std::i64::MAX),
+    )?;
 
     for comment in &comments {
       let comment_form = CommentForm {
@@ -623,7 +633,21 @@ impl Perform<LoginResponse> for Oper<DeleteAccount> {
     }
 
     // Posts
-    let posts = PostView::list(&conn, PostListingType::All, &SortType::New,None, Some(user_id), None, None, None, true, false, false, None, Some(std::i64::MAX))?;
+    let posts = PostView::list(
+      &conn,
+      PostListingType::All,
+      &SortType::New,
+      None,
+      Some(user_id),
+      None,
+      None,
+      None,
+      true,
+      false,
+      false,
+      None,
+      Some(std::i64::MAX),
+    )?;
 
     for post in &posts {
       let post_form = PostForm {
index ff56467ba3af036af9053f7df6c5a12624c8a23a..b4e16d1367fa8dd9eacf88ffb795df2276154552 100644 (file)
@@ -305,28 +305,28 @@ joinable!(site -> user_ (creator_id));
 joinable!(user_ban -> user_ (user_id));
 
 allow_tables_to_appear_in_same_query!(
-    category,
-    comment,
-    comment_like,
-    comment_saved,
-    community,
-    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,
-    post,
-    post_like,
-    post_read,
-    post_saved,
-    site,
-    user_,
-    user_ban,
+  category,
+  comment,
+  comment_like,
+  comment_saved,
+  community,
+  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,
+  post,
+  post_like,
+  post_read,
+  post_saved,
+  site,
+  user_,
+  user_ban,
 );