2021-10-27 16:03:07 +00:00
|
|
|
use crate::objects::community::ApubCommunity;
|
|
|
|
use lemmy_websocket::LemmyContext;
|
2021-10-25 14:15:03 +00:00
|
|
|
|
2021-10-28 15:52:11 +00:00
|
|
|
pub(crate) mod community_followers;
|
2021-10-27 16:03:07 +00:00
|
|
|
pub(crate) mod community_moderators;
|
|
|
|
pub(crate) mod community_outbox;
|
2021-10-28 15:52:11 +00:00
|
|
|
pub(crate) mod user_outbox;
|
2021-10-27 16:03:07 +00:00
|
|
|
|
|
|
|
/// Put community in the data, so we dont have to read it again from the database.
|
|
|
|
pub(crate) struct CommunityContext(pub ApubCommunity, pub LemmyContext);
|