mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
8 lines
160 B
Ruby
8 lines
160 B
Ruby
class Webhooks::Trigger
|
|
def self.execute(url, payload)
|
|
RestClient.post(url, payload)
|
|
rescue StandardError => e
|
|
Raven.capture_exception(e)
|
|
end
|
|
end
|