Ask A Question

Notifications

You’re not receiving notifications from this thread.

Using active_record_store instead of cookie_store

Amit Mallick asked in Rails

I am using

intializers/session_store.rb
MyApp::Application.config.session_store :cookie_store, key: '_myapp_session'

config/application.rb
config.middleware.insert_before "ActionDispatch::Session::CookieStore","Rack::SSL"
config.middleware.insert_before "ActionDispatch::Cookies","Rack::SSL"

Now i want to use active_record_store for session, for which I made changes below

intializers/session_store.rb
MyApp::Application.config.session_store :active_record_store, key: '_myapp_session'
ActiveRecord::SessionStore.session_class = MyAppSession

not sure how to make configrations in config/application.rb
i want to make sure i should able to set_cookie: '_myapp_session' in response headers, fo which "ActionDispatch::Cookies" is responsible

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 82,464+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.