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.
7 lines
123 B
Ruby
7 lines
123 B
Ruby
module DataUpdateScripts
|
|
class RemoveConnectFeatureFlag
|
|
def run
|
|
FeatureFlag.remove(:connect)
|
|
end
|
|
end
|
|
end
|