FIX: Reloading issues with classes
This commit is contained in:
parent
0c2d20a523
commit
5ed809a15b
|
@ -144,25 +144,25 @@ class Plugin::Instance
|
||||||
|
|
||||||
def topic_view_post_custom_fields_whitelister(&block)
|
def topic_view_post_custom_fields_whitelister(&block)
|
||||||
reloadable_patch do |plugin|
|
reloadable_patch do |plugin|
|
||||||
TopicView.add_post_custom_fields_whitelister(&block) if plugin.enabled?
|
::TopicView.add_post_custom_fields_whitelister(&block) if plugin.enabled?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def add_preloaded_group_custom_field(field)
|
def add_preloaded_group_custom_field(field)
|
||||||
reloadable_patch do |plugin|
|
reloadable_patch do |plugin|
|
||||||
Group.preloaded_custom_field_names << field if plugin.enabled?
|
::Group.preloaded_custom_field_names << field if plugin.enabled?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def add_preloaded_topic_list_custom_field(field)
|
def add_preloaded_topic_list_custom_field(field)
|
||||||
reloadable_patch do |plugin|
|
reloadable_patch do |plugin|
|
||||||
TopicList.preloaded_custom_fields << field if plugin.enabled?
|
::TopicList.preloaded_custom_fields << field if plugin.enabled?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def add_permitted_post_create_param(name)
|
def add_permitted_post_create_param(name)
|
||||||
reloadable_patch do |plugin|
|
reloadable_patch do |plugin|
|
||||||
Post.permitted_create_params << name if plugin.enabled?
|
::Post.permitted_create_params << name if plugin.enabled?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue