mirror of
https://git.checksum.fail/alec/slon.git
synced 2025-12-08 20:19:56 +02:00
10 lines
262 B
HolyC
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;
|
|
}
|