mirror of
https://git.checksum.fail/alec/slon.git
synced 2025-12-08 20:19:56 +02:00
10 lines
296 B
HolyC
10 lines
296 B
HolyC
|
|
if (!StrICmp("/oauth/authorize", @slon_http_request_path(session))) {
|
||
|
|
@slon_http_send_html_file(session, "M:/Slon/Static/oauth/authorize.html");
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!StrICmp("/oauth/verify_access", @slon_http_request_path(session))) {
|
||
|
|
@slon_oauth_verify_access_get(session);
|
||
|
|
return;
|
||
|
|
}
|