2021-10-16 13:33:38 +00:00
|
|
|
use crate::{
|
|
|
|
newtypes::{DbUrl, PersonId, PrivateMessageId},
|
|
|
|
schema::private_message,
|
|
|
|
};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-21 13:38:34 +00:00
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(
|
|
|
|
Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize,
|
|
|
|
)]
|
2020-12-21 13:38:34 +00:00
|
|
|
#[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,
|
|
|
|
}
|
|
|
|
|
2021-03-20 20:59:07 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Default)]
|
2020-12-21 13:38:34 +00:00
|
|
|
#[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>,
|
2021-03-20 20:59:07 +00:00
|
|
|
pub local: Option<bool>,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|