mirror of
https://git.checksum.fail/alec/slon.git
synced 2025-12-08 12:09:55 +02:00
Meta: Add files to repository
This commit is contained in:
14
Slon/Endpoints/Get/WellKnown.HC
Normal file
14
Slon/Endpoints/Get/WellKnown.HC
Normal file
@@ -0,0 +1,14 @@
|
||||
if (!StrICmp("/.well-known/host-meta", @slon_http_request_path(session))) {
|
||||
@slon_host_meta(session);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!StrICmp("/.well-known/oauth-authorization-server", @slon_http_request_path(session))) {
|
||||
@slon_oauth_well_known(session);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!StrICmp("/.well-known/webfinger", @slon_http_request_path(session))) {
|
||||
@slon_webfinger(session);
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user