]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/impls/private_message_report.rs
Diesel 2.0.0 upgrade (#2452)
[lemmy.git] / crates / db_schema / src / impls / private_message_report.rs
index 45ced6ce0c2aeca429f77c49066cc18838aac580..08fe4d28552fc3b80f05f0bb4faa3ac4dd0bb943 100644 (file)
@@ -13,7 +13,10 @@ impl Reportable for PrivateMessageReport {
   ///
   /// * `conn` - the postgres connection
   /// * `comment_report_form` - the filled CommentReportForm to insert
-  fn report(conn: &PgConnection, pm_report_form: &PrivateMessageReportForm) -> Result<Self, Error> {
+  fn report(
+    conn: &mut PgConnection,
+    pm_report_form: &PrivateMessageReportForm,
+  ) -> Result<Self, Error> {
     use crate::schema::private_message_report::dsl::*;
     insert_into(private_message_report)
       .values(pm_report_form)
@@ -26,7 +29,7 @@ impl Reportable for PrivateMessageReport {
   /// * `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<usize, Error> {
@@ -46,7 +49,7 @@ impl Reportable for PrivateMessageReport {
   /// * `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<usize, Error> {