mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
2016afc9db
* A first pass at user / community blocking. #426 * Adding unit tests for person and community block. * Moving migration * Fixing creator_blocked for comment queries, added tests. * Don't let a person block themselves * Fix post creator_blocked * Adding creator_blocked to PersonMentionView * Moving blocked and follows to MyUserInfo * Rename to local_user_view * Add moderates to MyUserInfo * Adding BlockCommunityResponse * Fixing name, and check_person_block * Fixing tests. * Using type in Blockable trait. * Changing recipient to target, adding unfollow to block action.
15 lines
310 B
Rust
15 lines
310 B
Rust
pub mod activity;
|
|
pub mod comment;
|
|
pub mod comment_report;
|
|
pub mod community;
|
|
pub mod community_block;
|
|
pub mod local_user;
|
|
pub mod moderator;
|
|
pub mod password_reset_request;
|
|
pub mod person;
|
|
pub mod person_block;
|
|
pub mod person_mention;
|
|
pub mod post;
|
|
pub mod post_report;
|
|
pub mod private_message;
|
|
pub mod site;
|