Hi, I'd like to set some cookie as part of each au...
# ktor
d
Hi, I'd like to set some cookie as part of each authenticated call
Copy code
routing {
        authenticate("auth-jwt") {
            route("*") {
               call.response.cookies.append(...)
            }
        }
       
        addRoutes()
    }
is the way to go?
d
Thanks, I'll check