Set the path of the _foodsoft_session cookie to the slug

This allows the usage of different foodcoops at the same time.
This commit is contained in:
Patrick Gansterer 2017-09-22 03:02:58 +02:00
parent ac00942f34
commit ba052efe5e
3 changed files with 22 additions and 2 deletions

View file

@ -89,7 +89,7 @@ class Mailer < ActionMailer::Base
# @todo this global stuff gives threading problems when foodcoops have different values! - pass args to `url_for` instead
def set_foodcoop_scope(foodcoop = FoodsoftConfig.scope)
[:protocol, :host, :port].each do |k|
[:protocol, :host, :port, :script_name].each do |k|
ActionMailer::Base.default_url_options[k] = FoodsoftConfig[k] if FoodsoftConfig[k]
end
ActionMailer::Base.default_url_options[:foodcoop] = foodcoop