remove ratelimiter

This commit is contained in:
nelle 2024-11-09 11:26:52 -07:00
parent 22fa786020
commit c61de05720
5 changed files with 23 additions and 7 deletions

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CheckStyle-IDEA" serialisationVersion="2">
<checkstyleVersion>10.20.1</checkstyleVersion>
<scanScope>JavaOnly</scanScope>
<option name="thirdPartyClasspath" />
<option name="activeLocationIds" />
<option name="locations">
<list>
<ConfigurationLocation id="bundled-sun-checks" type="BUNDLED" scope="All" description="Sun Checks">(bundled)</ConfigurationLocation>
<ConfigurationLocation id="bundled-google-checks" type="BUNDLED" scope="All" description="Google Checks">(bundled)</ConfigurationLocation>
</list>
</option>
</component>
</project>

View file

@ -1,7 +1,10 @@
<component name="ProjectCodeStyleConfiguration"> <component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173"> <code_scheme name="Project" version="173">
<ScalaCodeStyleSettings> <JetCodeStyleSettings>
<option name="MULTILINE_STRING_CLOSING_QUOTES_ON_NEW_LINE" value="true" /> <option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</ScalaCodeStyleSettings> </JetCodeStyleSettings>
<codeStyleSettings language="kotlin">
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
</codeStyleSettings>
</code_scheme> </code_scheme>
</component> </component>

View file

@ -1,5 +1,6 @@
<component name="ProjectCodeStyleConfiguration"> <component name="ProjectCodeStyleConfiguration">
<state> <state>
<option name="USE_PER_PROJECT_SETTINGS" value="true" />
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" /> <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state> </state>
</component> </component>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="KtfmtSettings"> <component name="KtfmtSettings">
<option name="enableKtfmt" value="Enabled" /> <option name="enableKtfmt" value="Disabled" />
</component> </component>
</project> </project>

View file

@ -5,7 +5,6 @@ package observer.nelle.nelleObserverBackend.plugins
import io.ktor.client.* import io.ktor.client.*
import io.ktor.http.* import io.ktor.http.*
import io.ktor.server.application.* import io.ktor.server.application.*
import io.ktor.server.plugins.ratelimit.*
import io.ktor.server.request.* import io.ktor.server.request.*
import io.ktor.server.response.* import io.ktor.server.response.*
import io.ktor.server.routing.* import io.ktor.server.routing.*
@ -68,7 +67,6 @@ fun kaomojiTimer() {
// this is where the fun REST comes in! // this is where the fun REST comes in!
fun Application.configureRouting(client: HttpClient) { fun Application.configureRouting(client: HttpClient) {
routing { routing {
rateLimit {
// route all paths of */api // route all paths of */api
route("/api") { route("/api") {
// meow // meow
@ -198,7 +196,6 @@ fun Application.configureRouting(client: HttpClient) {
} }
} }
} }
}
// deprecate // deprecate
route("/meow") { route("/meow") {