20141006143943_move_slack_service_to_webhook.rb 719 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
class MoveSlackServiceToWebhook < ActiveRecord::Migration
  def change
    SlackService.all.each do |slack_service|
      if ["token", "subdomain"].all? { |property| slack_service.properties.key? property }
        token = slack_service.properties['token']
        subdomain = slack_service.properties['subdomain']
        webhook = "https://#{subdomain}.slack.com/services/hooks/incoming-webhook?token=#{token}"
        slack_service.properties['webhook'] = webhook
        slack_service.properties.delete('token')
        slack_service.properties.delete('subdomain')
        # Room is configured on the Slack side
        slack_service.properties.delete('room')
13
        slack_service.save
14 15 16 17
      end
    end
  end
end