Chatwoot/app/controllers/webhooks/sms_controller.rb
2022-02-03 15:22:13 -08:00

6 lines
180 B
Ruby

class Webhooks::SmsController < ActionController::API
def process_payload
Webhooks::SmsEventsJob.perform_later(params['_json']&.first&.to_unsafe_hash)
head :ok
end
end