docbrown/lib/data_update_scripts/20220330191441_remove_connect_feature_flag.rb
Daniel Uber f680bc8d53
Remove the connect feature flag (#17061)
There's an existing data update to introduce the connect feature flag,
and it's been disabled. However, since all the code relying on this is
now gone, it makes sense to remove the flag.
2022-03-30 14:51:45 -05:00

7 lines
123 B
Ruby

module DataUpdateScripts
class RemoveConnectFeatureFlag
def run
FeatureFlag.remove(:connect)
end
end
end