This makes profile fields available for all forems. There is a follow up task to remove the conditionals around this (and remove the flag).
7 lines
130 B
Ruby
7 lines
130 B
Ruby
module DataUpdateScripts
|
|
class EnableProfileAdminFeature
|
|
def run
|
|
FeatureFlag.enable(:profile_admin)
|
|
end
|
|
end
|
|
end
|