#122 RateLimit GET

https://github.com/C9Glax/tranga-website/pull/41
This commit is contained in:
Glax 2024-02-11 00:49:26 +01:00
parent 2c4c8de8b5
commit e801cc4cbf

View File

@ -203,6 +203,9 @@ public class Server : GlobalBase
case "Settings/userAgent":
SendResponse(HttpStatusCode.OK, response, settings.userAgent);
break;
case "Settings/customRequestLimit":
SendResponse(HttpStatusCode.OK, response, settings.requestLimits);
break;
case "NotificationConnectors":
SendResponse(HttpStatusCode.OK, response, notificationConnectors);
break;