lemmy/crates/db_schema/src/aggregates/mod.rs
Dessalines 0aeb78b8f3
Showing # of unread comments for posts. Fixes #2134 (#2393)
* Showing # of unread comments for posts. Fixes #2134

* Fix lint.

* Forgot to remove comment list update.

* Fix clippy
2022-09-27 16:45:46 +00:00

14 lines
334 B
Rust

#[cfg(feature = "full")]
pub mod comment_aggregates;
#[cfg(feature = "full")]
pub mod community_aggregates;
#[cfg(feature = "full")]
pub mod person_aggregates;
#[cfg(feature = "full")]
pub mod person_post_aggregates;
#[cfg(feature = "full")]
pub mod post_aggregates;
#[cfg(feature = "full")]
pub mod site_aggregates;
pub mod structs;