UX: Release new user profile navigation for sidebar compatibility (#20134)

With the introduction of the sidebar navigation menu, the design team at
Discourse redesigned the user profile navigation to better coexist with
the sidebar.
This commit is contained in:
Alan Guo Xiang Tan
2023-02-21 10:16:16 +08:00
committed by GitHub
parent c47015b861
commit 359dc1c532
25 changed files with 18 additions and 61 deletions
@@ -0,0 +1,11 @@
# frozen_string_literal: true
class RemoveEnableNewUserProfileNavGroupsSiteSettings < ActiveRecord::Migration[7.0]
def up
execute "DELETE FROM site_settings WHERE name = 'enable_new_user_profile_nav_groups'"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end