mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Nutomic
5d23ef960e
* Remove SendActivity and Perform traits, rely on channel These traits arent necessary anymore now that websocket is removed. Removing them allows us to use normal actix http handler methods which are much more flexible, and allow using different middlewares as well as setting response attributes. * compiling and create post federating * clippy * rename methods, join outgoing activities task * fix api tests * no unwrap * conditional compile * add back getrandom * make crates optional * fmt
23 lines
517 B
Rust
23 lines
517 B
Rust
#[cfg(feature = "full")]
|
|
pub mod build_response;
|
|
pub mod comment;
|
|
pub mod community;
|
|
#[cfg(feature = "full")]
|
|
pub mod context;
|
|
pub mod custom_emoji;
|
|
pub mod person;
|
|
pub mod post;
|
|
pub mod private_message;
|
|
#[cfg(feature = "full")]
|
|
pub mod request;
|
|
#[cfg(feature = "full")]
|
|
pub mod send_activity;
|
|
pub mod sensitive;
|
|
pub mod site;
|
|
#[cfg(feature = "full")]
|
|
pub mod utils;
|
|
|
|
pub extern crate lemmy_db_schema;
|
|
pub extern crate lemmy_db_views;
|
|
pub extern crate lemmy_db_views_actor;
|
|
pub extern crate lemmy_db_views_moderator;
|