4e12e25c59
* First pass at adding admin purge. #904 #1331 * Breaking out purge into 4 tables for the 4 purgeable types. * Using CommunitySafe instead in view * Fix db_schema features flags. * Attempting to pass API key. * Adding pictrs image purging - Added pictrs_config block, for API_KEY - Clear out image columns after purging * Remove the remove_images field from a few of the purge API calls. * Fix some suggestions by @nutomic. * Add separate pictrs reqwest client. * Update defaults.hjson Co-authored-by: Nutomic <me@nutomic.com>
31 lines
865 B
Rust
31 lines
865 B
Rust
#[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_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_sticky_post_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod mod_transfer_community_view;
|
|
pub mod structs;
|