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.
34 lines
853 B
Rust
34 lines
853 B
Rust
use crate::{
|
|
schema::comment_report,
|
|
source::comment::Comment,
|
|
CommentId,
|
|
CommentReportId,
|
|
PersonId,
|
|
};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(
|
|
Identifiable, Queryable, Associations, PartialEq, Serialize, Deserialize, Debug, Clone,
|
|
)]
|
|
#[belongs_to(Comment)]
|
|
#[table_name = "comment_report"]
|
|
pub struct CommentReport {
|
|
pub id: CommentReportId,
|
|
pub creator_id: PersonId,
|
|
pub comment_id: CommentId,
|
|
pub original_comment_text: 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 = "comment_report"]
|
|
pub struct CommentReportForm {
|
|
pub creator_id: PersonId,
|
|
pub comment_id: CommentId,
|
|
pub original_comment_text: String,
|
|
pub reason: String,
|
|
}
|