Does anyone have any sense of what a sensible way ...
# ktor
d
Does anyone have any sense of what a sensible way would be to map Ktor’s typed sessions to Thymeleaf assuming a session is always just a single
Map<String, Any>
(approximately)? It looks like
#session
is not recommended/enabled by default anymore, so it might be fine to just implement
hasSession
on the
IWebExchange
implementation as constant
false
and
getSession
as returning
Nothing
?