1
0
Fork 0

use proper structure for preloading category custom fields

Dieser Commit ist enthalten in:
Faizaan Gagan 2021-11-17 20:15:48 +05:30
Ursprung 892914d649
Commit cdafffea2b

Datei anzeigen

@ -116,8 +116,15 @@ after_initialize do
load File.expand_path(path, __FILE__) load File.expand_path(path, __FILE__)
end end
# preloaded category custom fields
%w[
create_topic_wizard
]
.each do |custom_field|
Site.preloaded_category_custom_fields << custom_field
end
Liquid::Template.register_filter(::CustomWizard::LiquidFilter::FirstNonEmpty) Liquid::Template.register_filter(::CustomWizard::LiquidFilter::FirstNonEmpty)
Site.preloaded_category_custom_fields << "create_topic_wizard"
add_class_method(:wizard, :user_requires_completion?) do |user| add_class_method(:wizard, :user_requires_completion?) do |user|
wizard_result = self.new(user).requires_completion? wizard_result = self.new(user).requires_completion?