mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
10 lines
361 B
Ruby
10 lines
361 B
Ruby
class Webhooks::Trigger
|
|
def self.execute(url, payload)
|
|
RestClient.post(url, payload.to_json, { content_type: :json, accept: :json })
|
|
rescue RestClient::NotFound, RestClient::GatewayTimeout, SocketError => e
|
|
Rails.logger.info "Exception: invalid webhook url #{url} : #{e.message}"
|
|
rescue StandardError => e
|
|
Raven.capture_exception(e)
|
|
end
|
|
end
|