mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-19 02:44:02 +00:00
514f2222e0
* convert naive time to utc time * compounding fixes * cargo fmt * fix the rest * fix down migration * fix migrations * fix after merge * clippy fix * ap-fed 0.5.0 --------- Co-authored-by: Nutomic <me@nutomic.com>
28 lines
913 B
Rust
28 lines
913 B
Rust
use crate::newtypes::InstanceId;
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::federation_blocklist;
|
|
use chrono::{DateTime, Utc};
|
|
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: DateTime<Utc>,
|
|
pub updated: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
#[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<DateTime<Utc>>,
|
|
}
|