mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 17:34:00 +00:00
Nutomic
004efd5d94
* Implement reports for private messages * finish private message report view + test * implement api for pm reports * merge list report api calls into one, move report count to site * fix compile error * Revert "merge list report api calls into one, move report count to site" This reverts commit 3bf3b06a705c6bcf2bf20d07e2819b81298790f3. * add websocket messages for pm report created/resolved * remove private_message_report_view * add joinable private_message_report -> person_alias_1 * Address review comments
25 lines
623 B
Rust
25 lines
623 B
Rust
#[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 local_user_discussion_language_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")]
|
|
#[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;
|