2022-10-27 09:24:07 +00:00
|
|
|
use crate::newtypes::InstanceId;
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::federation_blocklist;
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::fmt::Debug;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable))]
|
|
|
|
#[cfg_attr(
|
|
|
|
feature = "full",
|
|
|
|
diesel(belongs_to(crate::source::instance::Instance))
|
|
|
|
)]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = federation_blocklist))]
|
|
|
|
pub struct FederationBlockList {
|
|
|
|
pub id: i32,
|
|
|
|
pub instance_id: InstanceId,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Default)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = federation_blocklist))]
|
|
|
|
pub struct FederationBlockListForm {
|
|
|
|
pub instance_id: InstanceId,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
}
|