mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			180 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			7 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
 |