chore: Provider APIs for SMS Channel - Bandwidth (#3889)

fixes: #3888
This commit is contained in:
Sojan Jose 2022-02-03 15:22:13 -08:00 committed by GitHub
parent fba7f40bee
commit cf10f3d03b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 879 additions and 51 deletions

View file

@ -0,0 +1,6 @@
class Webhooks::SmsController < ActionController::API
def process_payload
Webhooks::SmsEventsJob.perform_later(params['_json']&.first&.to_unsafe_hash)
head :ok
end
end