2025-02-21 18:10:25 -05:00
|
|
|
if (!StrICmp("/.well-known/host-meta", session->path())) {
|
2025-02-16 15:21:19 -05:00
|
|
|
@slon_host_meta(session);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-21 18:10:25 -05:00
|
|
|
if (!StrICmp("/.well-known/nodeinfo", session->path())) {
|
2025-02-21 17:44:54 -05:00
|
|
|
@slon_nodeinfo(session);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-21 18:10:25 -05:00
|
|
|
if (!StrICmp("/.well-known/oauth-authorization-server", session->path())) {
|
2025-02-16 15:21:19 -05:00
|
|
|
@slon_oauth_well_known(session);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-21 18:10:25 -05:00
|
|
|
if (!StrICmp("/.well-known/webfinger", session->path())) {
|
2025-02-16 15:21:19 -05:00
|
|
|
@slon_webfinger(session);
|
|
|
|
|
return;
|
|
|
|
|
}
|