mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-02 09:11:22 +00:00
6efab9aab1
* Creating a LocalImageView, so that front ends have the Person struct. * Removing local_user from LocalImageView. * Add uploader check.
28 lines
675 B
Rust
28 lines
675 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 custom_emoji_view;
|
|
#[cfg(feature = "full")]
|
|
pub mod local_image_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;
|
|
#[cfg(feature = "full")]
|
|
pub mod vote_view;
|