]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/source/mod.rs
Implement reports for private messages (#2433)
[lemmy.git] / crates / db_schema / src / source / mod.rs
index 8b82d31a7597a50953bc5f211d4e1c7dfc0f724c..e7667010455d1a36b7f6d59160c8d85f4e50ff23 100644 (file)
@@ -1,9 +1,14 @@
+#[cfg(feature = "full")]
 pub mod activity;
 pub mod comment;
+pub mod comment_reply;
 pub mod comment_report;
 pub mod community;
 pub mod community_block;
+pub mod email_verification;
+pub mod language;
 pub mod local_user;
+pub mod local_user_language;
 pub mod moderator;
 pub mod password_reset_request;
 pub mod person;
@@ -12,4 +17,7 @@ pub mod person_mention;
 pub mod post;
 pub mod post_report;
 pub mod private_message;
+pub mod private_message_report;
+pub mod registration_application;
+pub mod secret;
 pub mod site;