X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fimpls%2Fcomment_report.rs;h=ebafddab776a8f380252752588fe506d4465a99b;hb=c9f140742925d6da20103124b49f2b58a35fc2b8;hp=56e917e028f0135effae2521ef156ff9fc20f8d8;hpb=4e6409f325bca5b2727b19c24d77ffa2b59109b1;p=lemmy.git diff --git a/crates/db_schema/src/impls/comment_report.rs b/crates/db_schema/src/impls/comment_report.rs index 56e917e0..ebafddab 100644 --- a/crates/db_schema/src/impls/comment_report.rs +++ b/crates/db_schema/src/impls/comment_report.rs @@ -13,7 +13,10 @@ impl Reportable for CommentReport { /// /// * `conn` - the postgres connection /// * `comment_report_form` - the filled CommentReportForm to insert - fn report(conn: &PgConnection, comment_report_form: &CommentReportForm) -> Result { + fn report( + conn: &mut PgConnection, + comment_report_form: &CommentReportForm, + ) -> Result { use crate::schema::comment_report::dsl::*; insert_into(comment_report) .values(comment_report_form) @@ -26,7 +29,7 @@ impl Reportable for CommentReport { /// * `report_id` - the id of the report to resolve /// * `by_resolver_id` - the id of the user resolving the report fn resolve( - conn: &PgConnection, + conn: &mut PgConnection, report_id: Self::IdType, by_resolver_id: PersonId, ) -> Result { @@ -46,7 +49,7 @@ impl Reportable for CommentReport { /// * `report_id` - the id of the report to unresolve /// * `by_resolver_id` - the id of the user unresolving the report fn unresolve( - conn: &PgConnection, + conn: &mut PgConnection, report_id: Self::IdType, by_resolver_id: PersonId, ) -> Result {