Hi, is there a lib for authentication/authorizatio...
# ktor
m
Hi, is there a lib for authentication/authorization with baked in storage for session in DB or I should implement it by my self using sessions plug ? Something like https://github.com/heartcombo/devise
a
You can use the Authentication and the Sessions plugins. For the Sessions plugin you can create a custom database storage of a session data by implementing the
SessionStorage
interface.