FEATURE: Enable the new /about page for everyone (#29390)

This commit removes the feature flag for the new /about page, enabling it for all sites, and removes the code for old the /about page.

Internal topic: t/140413.
This commit is contained in:
Osama Sayegh
2024-10-29 18:40:11 +03:00
committed by GitHub
parent cc447a1ae3
commit 2ffe413b0b
25 changed files with 364 additions and 765 deletions

View File

@@ -0,0 +1,14 @@
# frozen_string_literal: true
class RemoveExperimentalRedesignedAboutPageGroupsSetting < ActiveRecord::Migration[7.1]
def up
execute(<<~SQL)
DELETE FROM site_settings
WHERE name = 'experimental_redesigned_about_page_groups'
SQL
end
def down
raise IrreversibleMigration.new
end
end