mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
FIX: reloading issues with classes
This commit is contained in:
parent
91f0f76fb1
commit
55f449edc5
@ -92,7 +92,7 @@ class Plugin::Instance
|
||||
|
||||
def whitelist_staff_user_custom_field(field)
|
||||
reloadable_patch do |plugin|
|
||||
User.register_plugin_staff_custom_field(field, plugin) if plugin.enabled?
|
||||
::User.register_plugin_staff_custom_field(field, plugin) if plugin.enabled?
|
||||
end
|
||||
end
|
||||
|
||||
@ -250,19 +250,19 @@ class Plugin::Instance
|
||||
|
||||
def register_topic_custom_field_type(name, type)
|
||||
reloadable_patch do |plugin|
|
||||
Topic.register_custom_field_type(name, type) if plugin.enabled?
|
||||
::Topic.register_custom_field_type(name, type) if plugin.enabled?
|
||||
end
|
||||
end
|
||||
|
||||
def register_post_custom_field_type(name, type)
|
||||
reloadable_patch do |plugin|
|
||||
Post.register_custom_field_type(name, type) if plugin.enabled?
|
||||
::Post.register_custom_field_type(name, type) if plugin.enabled?
|
||||
end
|
||||
end
|
||||
|
||||
def register_group_custom_field_type(name, type)
|
||||
reloadable_patch do |plugin|
|
||||
Group.register_custom_field_type(name, type) if plugin.enabled?
|
||||
::Group.register_custom_field_type(name, type) if plugin.enabled?
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user