Is it possible to add a header to a response in Kt...
# ktor
m
Is it possible to add a header to a response in Ktor Server? I have several routes and would like to add a header to a specific ones only
c
Something like route(path) { intercept(call) { } }
1
In the intecept you can add a header call response.headers.append
👍 1
m
thanks