bd7aeba484
Enabling Support for Whatsapp via 360Dialog as a prototype for the provider APIs. Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
6 lines
173 B
Ruby
6 lines
173 B
Ruby
class Webhooks::WhatsappController < ActionController::API
|
|
def process_payload
|
|
Webhooks::WhatsappEventsJob.perform_later(params.to_unsafe_hash)
|
|
head :ok
|
|
end
|
|
end
|