diff --git a/lemmy_api/src/lib.rs b/lemmy_api/src/lib.rs index 1f678e62c..06b629c77 100644 --- a/lemmy_api/src/lib.rs +++ b/lemmy_api/src/lib.rs @@ -107,7 +107,7 @@ pub(crate) async fn check_community_ban( /// * `user_id` - the user id of the moderator /// * `community_id` - optional community id to check for moderator privileges /// * `pool` - the diesel db pool -pub(in crate) async fn collect_moderated_communities( +pub(crate) async fn collect_moderated_communities( user_id: i32, community_id: Option, pool: &DbPool, diff --git a/lemmy_db/src/comment_report.rs b/lemmy_db/src/comment_report.rs index b1037f111..a243891eb 100644 --- a/lemmy_db/src/comment_report.rs +++ b/lemmy_db/src/comment_report.rs @@ -166,7 +166,7 @@ impl CommentReportView { /// returns the current unresolved comment report count for the supplied community ids /// /// * `community_ids` - a Vec of community_ids to get a count for - pub fn get_report_count(conn: &PgConnection, community_ids: &Vec) -> Result { + pub fn get_report_count(conn: &PgConnection, community_ids: &[i32]) -> Result { use super::comment_report::comment_report_view::dsl::*; comment_report_view .filter(resolved.eq(false).and(community_id.eq_any(community_ids))) diff --git a/lemmy_db/src/post_report.rs b/lemmy_db/src/post_report.rs index 3422f54a5..5f8aa5ea5 100644 --- a/lemmy_db/src/post_report.rs +++ b/lemmy_db/src/post_report.rs @@ -167,7 +167,7 @@ impl PostReportView { /// returns the current unresolved post report count for the supplied community ids /// /// * `community_ids` - a Vec of community_ids to get a count for - pub fn get_report_count(conn: &PgConnection, community_ids: &Vec) -> Result { + pub fn get_report_count(conn: &PgConnection, community_ids: &[i32]) -> Result { use super::post_report::post_report_view::dsl::*; post_report_view .filter(resolved.eq(false).and(community_id.eq_any(community_ids))) diff --git a/lemmy_structs/src/comment.rs b/lemmy_structs/src/comment.rs index ed292caed..6479124f8 100644 --- a/lemmy_structs/src/comment.rs +++ b/lemmy_structs/src/comment.rs @@ -106,6 +106,7 @@ pub struct ResolveCommentReportResponse { pub struct ListCommentReports { pub page: Option, pub limit: Option, + /// if no community is given, it returns reports for all communities moderated by the auth user pub community: Option, pub auth: String, }