fix(service): remove unused followers and following route handlers
Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Failing after 9m20s
test / unit (pull_request) Successful in 16m27s
test / integration (pull_request) Failing after 16m54s

This commit is contained in:
2026-05-15 12:08:45 +02:00
parent 6273635aeb
commit a040a38036

View File

@@ -16,7 +16,6 @@ use crate::{
content::ApObjectHandler, content::ApObjectHandler,
data::FederationData, data::FederationData,
federation::ApFederationConfig, federation::ApFederationConfig,
followers_handler::{followers_handler, following_handler},
inbox::inbox_handler, inbox::inbox_handler,
nodeinfo::{nodeinfo_handler, nodeinfo_well_known_handler}, nodeinfo::{nodeinfo_handler, nodeinfo_well_known_handler},
outbox::outbox_handler, outbox::outbox_handler,
@@ -275,8 +274,6 @@ impl ActivityPubService {
.route("/inbox", post(inbox_handler)) .route("/inbox", post(inbox_handler))
.route("/users/{id}/inbox", post(inbox_handler)) .route("/users/{id}/inbox", post(inbox_handler))
.route("/users/{id}/outbox", get(outbox_handler)) .route("/users/{id}/outbox", get(outbox_handler))
.route("/users/{id}/followers", get(followers_handler))
.route("/users/{id}/following", get(following_handler))
.layer(self.federation_config.middleware()) .layer(self.federation_config.middleware())
} }