Open ejaronne opened 1 month ago
Just checked, Vulcan uses the Devise’s rememberable module. Setting the secure flag and http only can be done by updating the devise config config/initializers/devise.rb
, setting the the secure attribute for the cookie as follow:
config.rememberable_options = { secure: true, httponly: true }
using the Ruby on Rails Framework options