FEATURE: implements user based sidebar mode (#23078)

This commit is contained in:
Joffrey JAFFEUX
2023-08-18 20:33:07 +02:00
committed by GitHub
parent 82b16f4f47
commit b2b84cc957
31 changed files with 602 additions and 52 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddChatSeparateSidebarModeUserOption < ActiveRecord::Migration[7.0]
def change
add_column :user_options, :chat_separate_sidebar_mode, :integer, default: 0, null: false
end
end