Skip to content

Commit

Permalink
add handlers to router
Browse files Browse the repository at this point in the history
  • Loading branch information
avdb13 committed Dec 10, 2024
1 parent b224641 commit 757c87b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/bin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -514,7 +514,10 @@ async fn actix_main(app_state: web::Data<AppState>) -> 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),
),
);

Expand Down

0 comments on commit 757c87b

Please sign in to comment.