Featured
-
No Featured Found!
Tags
Convert rails 3 list of routes to rails 6 list of routes
Having trouble defining multiple routes together in rails 6.
In rails 3 we defined multiple routes like the example below.
member_routes = {
:validate_update_action => :put,
:rebuild_update_form ...
How to isolate cookie store for one subdomain from other subdomains and domain itself in Rails 5?
Hello,
I need to have cookie store #1 on a.example.com
and I need to have cookie store #2 on b.example.com and on example.com
One method was to change cookie name per subdomain / domain, however
request.env['rack.session.opti...