]> Untitled Git - lemmy.git/commitdiff
Community modlog doesn't show non-community actions.
authorDessalines <tyhou13@gmx.com>
Wed, 17 Apr 2019 15:50:44 +0000 (08:50 -0700)
committerDessalines <tyhou13@gmx.com>
Wed, 17 Apr 2019 15:50:44 +0000 (08:50 -0700)
Fixes #65

server/src/actions/post_view.rs
server/src/websocket_server/server.rs

index 0ebcf40d3816c6d73fb2ebd2471e1618ba3c67a0..f95c0177167644086ed97ed2b3038832fe37270f 100644 (file)
@@ -116,6 +116,9 @@ impl PostView {
               .order_by(score.desc())
     };
 
+
+    // TODO make sure community removed isn't fetched either
+
     query = query.filter(removed.eq(false));
 
     query.load::<Self>(conn) 
index ef05f80193a3775df4995fedc94e66efef0bc63f..6b91a76b60fbc177742ac943fed094bbfec2bd5a 100644 (file)
@@ -1792,11 +1792,19 @@ impl Perform for GetModlog {
     let removed_posts = ModRemovePostView::list(&conn, self.community_id, self.mod_user_id, self.limit, self.page).unwrap();
     let locked_posts = ModLockPostView::list(&conn, self.community_id, self.mod_user_id, self.limit, self.page).unwrap();
     let removed_comments = ModRemoveCommentView::list(&conn, self.community_id, self.mod_user_id, self.limit, self.page).unwrap();
-    let removed_communities = ModRemoveCommunityView::list(&conn, self.mod_user_id, self.limit, self.page).unwrap();
     let banned_from_community = ModBanFromCommunityView::list(&conn, self.community_id, self.mod_user_id, self.limit, self.page).unwrap();
-    let banned = ModBanView::list(&conn, self.mod_user_id, self.limit, self.page).unwrap();
     let added_to_community = ModAddCommunityView::list(&conn, self.community_id, self.mod_user_id, self.limit, self.page).unwrap();
-    let added = ModAddView::list(&conn, self.mod_user_id, self.limit, self.page).unwrap();
+
+    // These arrays are only for the full modlog, when a community isn't given
+    let mut removed_communities = Vec::new();
+    let mut banned = Vec::new();
+    let mut added = Vec::new();
+
+    if self.community_id.is_none() {
+      removed_communities = ModRemoveCommunityView::list(&conn, self.mod_user_id, self.limit, self.page).unwrap();
+      banned = ModBanView::list(&conn, self.mod_user_id, self.limit, self.page).unwrap();
+      added = ModAddView::list(&conn, self.mod_user_id, self.limit, self.page).unwrap();
+    }
 
     // Return the jwt
     serde_json::to_string(