mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 01:14:02 +00:00
cb753b045f
* Group imports with rustfmt * Running cargo fmt again. Co-authored-by: Felix Ableitner <me@nutomic.com>
27 lines
908 B
Rust
27 lines
908 B
Rust
use crate::newtypes::InstanceId;
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::federation_blocklist;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::fmt::Debug;
|
|
|
|
#[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>,
|
|
}
|