mirror of https://github.com/LemmyNet/lemmy.git
29 lines
671 B
Rust
29 lines
671 B
Rust
use crate::{newtypes::DbUrl, schema::sent_activity};
|
|
use serde_json::Value;
|
|
use std::fmt::Debug;
|
|
|
|
#[derive(PartialEq, Eq, Debug, Queryable)]
|
|
#[diesel(table_name = sent_activity)]
|
|
pub struct SentActivity {
|
|
pub id: i64,
|
|
pub ap_id: DbUrl,
|
|
pub data: Value,
|
|
pub sensitive: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
}
|
|
#[derive(Insertable)]
|
|
#[diesel(table_name = sent_activity)]
|
|
pub struct SentActivityForm {
|
|
pub ap_id: DbUrl,
|
|
pub data: Value,
|
|
pub sensitive: bool,
|
|
}
|
|
|
|
#[derive(PartialEq, Eq, Debug, Queryable)]
|
|
#[diesel(table_name = received_activity)]
|
|
pub struct ReceivedActivity {
|
|
pub id: i64,
|
|
pub ap_id: DbUrl,
|
|
pub published: chrono::NaiveDateTime,
|
|
}
|