b18c744f63
* First untested pass at reporting. * Adding unit tests for post and comment report views * Fix clippy * Adding counts, creator_banned, and unresolved_only * Adding my_vote to report views * Fixing unit tests.
32 lines
960 B
Rust
32 lines
960 B
Rust
use crate::{schema::post_report, source::post::Post, DbUrl, PersonId, PostId, PostReportId};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(
|
|
Identifiable, Queryable, Associations, PartialEq, Serialize, Deserialize, Debug, Clone,
|
|
)]
|
|
#[belongs_to(Post)]
|
|
#[table_name = "post_report"]
|
|
pub struct PostReport {
|
|
pub id: PostReportId,
|
|
pub creator_id: PersonId,
|
|
pub post_id: PostId,
|
|
pub original_post_name: String,
|
|
pub original_post_url: Option<DbUrl>,
|
|
pub original_post_body: Option<String>,
|
|
pub reason: String,
|
|
pub resolved: bool,
|
|
pub resolver_id: Option<PersonId>,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
#[table_name = "post_report"]
|
|
pub struct PostReportForm {
|
|
pub creator_id: PersonId,
|
|
pub post_id: PostId,
|
|
pub original_post_name: String,
|
|
pub original_post_url: Option<DbUrl>,
|
|
pub original_post_body: Option<String>,
|
|
pub reason: String,
|
|
}
|