You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to make this work in rails API mode you need to enable session management in middleware as stated in the RoR Guide here.
# This also configures session_options for use below
config.session_store :cookie_store, key: '_interslice_session'
# Required for all session management (regardless of session_store)
config.middleware.use ActionDispatch::Cookies
config.middleware.use config.session_store, config.session_options
The text was updated successfully, but these errors were encountered:
Thanks for this!
In order to make this work in rails API mode you need to enable session management in middleware as stated in the RoR Guide here.
The text was updated successfully, but these errors were encountered: