Files
openfoodnetwork/lib/spree/i18n/base.rb
2020-07-11 15:56:08 +01:00

20 lines
298 B
Ruby

# frozen_string_literal: true
module Spree
module ViewContext
def self.context=(context)
@context = context
end
def self.context
@context
end
def view_context
super.tap do |context|
Spree::ViewContext.context = context
end
end
end
end