docbrown/lib/data_update_scripts/20220408203135_remove_profile_admin_flag.rb
Daniel Uber 8276d1d8c6
Remove profile admin feature flag (#17194)
Remove test cases built around it (modified when the guards were removed).
2022-04-11 09:27:35 -05:00

7 lines
127 B
Ruby

module DataUpdateScripts
class RemoveProfileAdminFlag
def run
FeatureFlag.remove(:profile_admin)
end
end
end