]> Untitled Git - lemmy.git/blob - crates/apub/src/collections/mod.rs
Check user accepted before sending jwt in password reset (fixes #2591) (#2597)
[lemmy.git] / crates / apub / src / collections / mod.rs
1 use crate::objects::community::ApubCommunity;
2 use lemmy_websocket::LemmyContext;
3
4 pub(crate) mod community_moderators;
5 pub(crate) mod community_outbox;
6
7 /// Put community in the data, so we dont have to read it again from the database.
8 pub(crate) struct CommunityContext(pub ApubCommunity, pub LemmyContext);