2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2017-09-08 08:28:34 +00:00
|
|
|
class SlackGroupConfigIssue587 < ActiveRecord::Migration[4.2]
|
2017-01-13 19:37:14 +00:00
|
|
|
def up
|
|
|
|
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2017-01-13 19:37:14 +00:00
|
|
|
|
|
|
|
setting = Setting.find_by(name: 'slack_config')
|
|
|
|
return if !setting
|
|
|
|
|
|
|
|
return if !setting.state_current['value']
|
|
|
|
return if !setting.state_current['value']['items']
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-01-13 19:37:14 +00:00
|
|
|
config_item = setting.state_current['value']['items'].first
|
|
|
|
return if !config_item
|
|
|
|
|
|
|
|
return if !config_item.key?('group_id')
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-01-13 19:37:14 +00:00
|
|
|
config_item['group_ids'] = config_item.delete('group_id')
|
|
|
|
|
|
|
|
setting.save!
|
|
|
|
end
|
|
|
|
end
|