mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
18 lines
446 B
Rust
18 lines
446 B
Rust
use crate::apub;
|
|
use actix_web::web;
|
|
|
|
pub fn config(cfg: &mut web::ServiceConfig) {
|
|
cfg
|
|
.route(
|
|
"/federation/c/{community_name}",
|
|
web::get().to(apub::community::get_apub_community),
|
|
)
|
|
.route(
|
|
"/federation/c/{community_name}/followers",
|
|
web::get().to(apub::community::get_apub_community_followers),
|
|
)
|
|
.route(
|
|
"/federation/u/{user_name}",
|
|
web::get().to(apub::user::get_apub_user),
|
|
);
|
|
}
|