2021-03-18 20:25:21 +00:00
|
|
|
use crate::{schema::private_message, DbUrl, PersonId, PrivateMessageId};
|
2020-12-21 13:38:34 +00:00
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)]
|
|
|
|
#[table_name = "private_message"]
|
|
|
|
pub struct PrivateMessage {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: PrivateMessageId,
|
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub recipient_id: PersonId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub content: String,
|
|
|
|
pub deleted: bool,
|
|
|
|
pub read: bool,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub ap_id: DbUrl,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub local: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset)]
|
|
|
|
#[table_name = "private_message"]
|
|
|
|
pub struct PrivateMessageForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub recipient_id: PersonId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub content: String,
|
|
|
|
pub deleted: Option<bool>,
|
|
|
|
pub read: Option<bool>,
|
|
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub ap_id: Option<DbUrl>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub local: bool,
|
|
|
|
}
|