mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:38 -06:00
13 lines
331 B
Ruby
13 lines
331 B
Ruby
|
# frozen_string_literal: true
|
||
|
class ThemeModifierHelper
|
||
|
def initialize(request: nil, theme_ids: nil)
|
||
|
@theme_ids = theme_ids || request&.env&.[](:resolved_theme_ids)
|
||
|
end
|
||
|
|
||
|
ThemeModifierSet::MODIFIERS.keys.each do |modifier|
|
||
|
define_method(modifier) do
|
||
|
Theme.lookup_modifier(@theme_ids, modifier)
|
||
|
end
|
||
|
end
|
||
|
end
|