feat: enable assignment v2 by default for new accounts (#14031)

## Description

Enable assignment v2 by default for new accounts

## Type of change

- [ ] New feature (non-breaking change which adds functionality)


## Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented on my code, particularly in hard-to-understand
areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream
modules
This commit is contained in:
Tanmay Deep Sharma
2026-04-09 16:14:17 +05:30
committed by GitHub
parent bd14e96ed9
commit f1da7b8afa
3 changed files with 16 additions and 2 deletions

View File

@@ -190,7 +190,7 @@
chatwoot_internal: true
- name: assignment_v2
display_name: Assignment V2
enabled: false
enabled: true
- name: twilio_content_templates
display_name: Twilio Content Templates
enabled: false

View File

@@ -0,0 +1,14 @@
class EnableAssignmentV2ForNewAccounts < ActiveRecord::Migration[7.1]
def up
config = InstallationConfig.find_by(name: 'ACCOUNT_LEVEL_FEATURE_DEFAULTS')
return if config&.value.blank?
features = config.value
feature = features.find { |f| f['name'] == 'assignment_v2' }
return if feature.blank?
feature['enabled'] = true
config.update!(value: features)
GlobalConfig.clear_cache
end
end

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2026_03_24_102005) do
ActiveRecord::Schema[7.1].define(version: 2026_04_09_091202) do
# These extensions should be enabled to support this database
enable_extension "pg_stat_statements"
enable_extension "pg_trgm"