Why is session initializer removed in Rails 5.1.1

I went to this website to see the differences between Rails 5.0.0 and Rails 5.1.1

Why does 5.1.1 no longer include config/initializers/session_store.rb

:?

thank enter image description here

+3


source to share


1 answer


Here's the commit where it was removed: Set default repository to default, no longer via app initializer



So new applications do not have this initializer, and the session store is set to the cookie store by default. that is, the same as the value that was previously specified in the generated version of this initializer.

+7


source







All Articles