diff --git a/src/bin/src/main.rs b/src/bin/src/main.rs index 7c537888..867437ab 100644 --- a/src/bin/src/main.rs +++ b/src/bin/src/main.rs @@ -15,8 +15,8 @@ use rauthy_common::utils::UseDummyAddress; use rauthy_common::{is_sqlite, password_hasher}; use rauthy_handlers::openapi::ApiDoc; use rauthy_handlers::{ - api_keys, auth_providers, blacklist, clients, events, fed_cm, generic, groups, oidc, roles, - scopes, sessions, users, + api_keys, atproto, auth_providers, blacklist, clients, events, fed_cm, generic, groups, oidc, + roles, scopes, sessions, users, }; use rauthy_middlewares::csrf_protection::CsrfProtectionMiddleware; use rauthy_middlewares::ip_blacklist::RauthyIpBlacklistMiddleware; @@ -514,7 +514,10 @@ async fn actix_main(app_state: web::Data) -> std::io::Result<()> { .service(oidc::get_well_known) .service(generic::get_health) .service(generic::get_ready) - .service(generic::get_static_assets), + .service(generic::get_static_assets) + .service(atproto::get_client_metadata) + .service(atproto::post_login) + .service(atproto::post_callback), ), );