By default Mojolicious sessions create a signed cookie for the session.
I would like to override this behavior. I can extend Mojolicious::Sessions and override the load and store methods, but how do I use my class instead of the default Mojolicious::Sessions.
By default Mojolicious sessions create a signed cookie for the session. I would like
Share
As documented, the Mojolicious::Sessions object is held in the app’s
sessionsproperty. Therefore you can either override it on creationor afterward