Chatwoot/lib/webhooks/trigger.rb

10 lines
370 B
Ruby
Raw Normal View History

2020-02-14 17:49:17 +00:00
class Webhooks::Trigger
def self.execute(url, payload)
2020-07-21 06:45:24 +00:00
RestClient.post(url, payload.to_json, { content_type: :json, accept: :json })
rescue *ExceptionList::REST_CLIENT_EXCEPTIONS, *ExceptionList::URI_EXCEPTIONS => e
Rails.logger.info "Exception: invalid webhook url #{url} : #{e.message}"
2020-02-14 17:49:17 +00:00
rescue StandardError => e
Raven.capture_exception(e)
end
end