]> Untitled Git - lemmy.git/blobdiff - crates/db_views/src/lib.rs
Add Custom Emojis Support (#2616)
[lemmy.git] / crates / db_views / src / lib.rs
index a9369ed2496f5775773d4e8b7ef67cd35152d327..8abf776ba50984a0c8c578e6982c86cd2ace8b23 100644 (file)
@@ -1,9 +1,24 @@
 #[cfg(test)]
 extern crate serial_test;
 
+#[cfg(feature = "full")]
 pub mod comment_report_view;
+#[cfg(feature = "full")]
 pub mod comment_view;
+#[cfg(feature = "full")]
+pub mod custom_emoji_view;
+#[cfg(feature = "full")]
+pub mod local_user_view;
+#[cfg(feature = "full")]
 pub mod post_report_view;
+#[cfg(feature = "full")]
 pub mod post_view;
+#[cfg(feature = "full")]
+pub mod private_message_report_view;
+#[cfg(feature = "full")]
 pub mod private_message_view;
+#[cfg(feature = "full")]
+pub mod registration_application_view;
+#[cfg(feature = "full")]
 pub mod site_view;
+pub mod structs;