DEV: plugin API to register User custom field types

This commit is contained in:
Régis Hanol 2019-07-24 18:38:44 +02:00
parent 24fc0aba9b
commit 39a427efce

View File

@ -373,6 +373,13 @@ class Plugin::Instance
end
end
# Applies to all sites in a multisite environment. Ignores plugin.enabled?
def register_user_custom_field_type(name, type)
reloadable_patch do |plugin|
::User.register_custom_field_type(name, type)
end
end
def register_seedfu_fixtures(paths)
paths = [paths] if !paths.kind_of?(Array)
SeedFu.fixture_paths.concat(paths)