Files
slon/Slon/Endpoints/Get/OAuth.HC
2025-02-21 18:10:25 -05:00

10 lines
262 B
HolyC

if (!StrICmp("/oauth/authorize", session->path())) {
@slon_http_send_html_file(session, "M:/Slon/Static/oauth/authorize.html");
return;
}
if (!StrICmp("/oauth/verify_access", session->path())) {
@slon_oauth_verify_access_get(session);
return;
}