discourse/lib/theme_modifier_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
337 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ThemeModifierHelper
def initialize(request: nil, theme_ids: nil)
2021-06-17 22:16:26 -04:00
@theme_ids = theme_ids || Theme.transform_ids(request&.env&.[](:resolved_theme_id))
end
ThemeModifierSet.modifiers.keys.each do |modifier|
define_method(modifier) { Theme.lookup_modifier(@theme_ids, modifier) }
end
end