mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 01:14:02 +00:00
31 lines
916 B
Rust
31 lines
916 B
Rust
use crate::{schema::private_message, DbUrl, PersonId, PrivateMessageId};
|
|
use serde::Serialize;
|
|
|
|
#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)]
|
|
#[table_name = "private_message"]
|
|
pub struct PrivateMessage {
|
|
pub id: PrivateMessageId,
|
|
pub creator_id: PersonId,
|
|
pub recipient_id: PersonId,
|
|
pub content: String,
|
|
pub deleted: bool,
|
|
pub read: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub ap_id: DbUrl,
|
|
pub local: bool,
|
|
}
|
|
|
|
#[derive(Insertable, AsChangeset, Default)]
|
|
#[table_name = "private_message"]
|
|
pub struct PrivateMessageForm {
|
|
pub creator_id: PersonId,
|
|
pub recipient_id: PersonId,
|
|
pub content: String,
|
|
pub deleted: Option<bool>,
|
|
pub read: Option<bool>,
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub ap_id: Option<DbUrl>,
|
|
pub local: Option<bool>,
|
|
}
|