Venkat
08/02/2023, 8:07 AMAleksei Tirman [JB]
08/03/2023, 10:00 AMval plugin = createApplicationPlugin("plugin") {
onCall { call ->
if (call.request.httpMethod == HttpMethod.Options) {
call.response.headers.append("Access-Control-Allow-Methods", "GET, POST")
}
}
}