Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
21 Zeilen
Kein EOL
532 B
Ruby
21 Zeilen
Kein EOL
532 B
Ruby
module CustomWizardCustomFieldPreloader
|
|
def preload_custom_fields(objects, fields)
|
|
if objects.present? && cw_fields_enabled?
|
|
@cw_klass = objects.first.class.name.underscore
|
|
if cw_fields.any?
|
|
cw_fields.each do |field|
|
|
fields << field.name
|
|
end
|
|
end
|
|
end
|
|
super(objects, fields)
|
|
end
|
|
|
|
def cw_fields_enabled?
|
|
SiteSetting.custom_wizard_enabled && CustomWizard::CustomField.enabled?
|
|
end
|
|
|
|
def cw_fields
|
|
CustomWizard::CustomField.list_by(:klass, @cw_klass)
|
|
end
|
|
end |