mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-23 11:21:32 +00:00
Nutomic
66a63df152
* Instance blocks with mod log entry and expiration (fixes #2506) * separate table for instance block mod log * fix tests * fix ts * modlog entry for allow instance * fix test cleanup * add back test * clippy * fix check * more changes * move files * update * sql fmt * partly working * fix setup * cleanup * fixes * prettier * try catch * address comments
35 lines
976 B
Rust
35 lines
976 B
Rust
#[cfg(feature = "full")]
|
|
pub mod admin_allow_instance;
|
|
#[cfg(feature = "full")]
|
|
pub mod admin_block_instance;
|
|
#[cfg(feature = "full")]
|
|
pub mod admin_purge_comment_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod admin_purge_community_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod admin_purge_person_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod admin_purge_post_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_add_community_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_add_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_ban_from_community_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_ban_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_feature_post_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_hide_community_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_lock_post_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_remove_comment_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_remove_community_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_remove_post_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_transfer_community_view;
|
|
pub mod structs;
|