* Add feature flag for connect * Start using Connect feature flag * Add feature flag check to plaintext mailers * Minor fixes/formatting issues * Fix typo * Enable Connect feature flag for tests * Fix feature flag in tests * Update rails_helper * Fix typo * (╯°□°)╯︵ ┻━┻ * One more try * connect announcement * Use connect feature flag in admin and admin routes * Add aria-live attribute to announcement * Undo schema.rb changes Co-authored-by: Paweł Ludwiczak <ludwiczakpawel@gmail.com>
7 lines
117 B
Ruby
7 lines
117 B
Ruby
module DataUpdateScripts
|
|
class AddConnectFeatureFlag
|
|
def run
|
|
FeatureFlag.add(:connect)
|
|
end
|
|
end
|
|
end
|