Files
slon/Slon/Endpoints/Get/OAuth.HC

10 lines
262 B
HolyC
Raw Normal View History

2025-02-21 18:10:25 -05:00
if (!StrICmp("/oauth/authorize", session->path())) {
2025-02-16 15:21:19 -05:00
@slon_http_send_html_file(session, "M:/Slon/Static/oauth/authorize.html");
return;
}
2025-02-21 18:10:25 -05:00
if (!StrICmp("/oauth/verify_access", session->path())) {
2025-02-16 15:21:19 -05:00
@slon_oauth_verify_access_get(session);
return;
}