mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-24 13:21:19 +00:00
Nutomic
50f81cf157
* User can block instances (fixes #2397) * update comments * review comments * use route * update * add api test * update tests * fix * fix test * ci --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
21 lines
557 B
Rust
21 lines
557 B
Rust
#[cfg(feature = "full")]
|
|
pub mod comment_reply_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod community_block_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod community_follower_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod community_moderator_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod community_person_ban_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod community_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod instance_block_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod person_block_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod person_mention_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod person_view;
|
|
pub mod structs;
|