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 TriggerRecipientUpdate < ActiveRecord::Migration[4.2]
|
2017-05-15 22:38:59 +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-05-15 22:38:59 +00:00
|
|
|
|
2019-08-16 15:39:31 +00:00
|
|
|
['auto reply (on new tickets)', 'auto reply (on follow-up of tickets)'].each do |name|
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-06-27 18:26:28 +00:00
|
|
|
trigger = Trigger.find_by(name: name)
|
|
|
|
next if trigger.blank?
|
|
|
|
next if trigger.perform.blank?
|
|
|
|
next if trigger.perform['notification.email'].blank?
|
|
|
|
next if trigger.perform['notification.email']['recipient'].blank?
|
|
|
|
next if trigger.perform['notification.email']['recipient'] != 'ticket_customer'
|
|
|
|
|
|
|
|
trigger.perform['notification.email']['recipient'] = 'article_last_sender'
|
|
|
|
trigger.save!
|
|
|
|
rescue => e
|
|
|
|
Rails.logger.error "Unable to update Trigger.find(#{trigger.id}) '#{trigger.inspect}': #{e.message}"
|
|
|
|
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2017-05-15 22:38:59 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|