docbrown/lib/data_update_scripts/20220408154416_enable_profile_admin_feature.rb
Daniel Uber c8149e8e1a
Enable :profile_admin feature flag (#17187)
This makes profile fields available for all forems.

There is a follow up task to remove the conditionals around this (and
remove the flag).
2022-04-08 14:03:55 -05:00

7 lines
130 B
Ruby

module DataUpdateScripts
class EnableProfileAdminFeature
def run
FeatureFlag.enable(:profile_admin)
end
end
end