Files
clientsflow/research/chatwoot/app/controllers/webhooks/telegram_controller.rb

7 lines
173 B
Ruby

class Webhooks::TelegramController < ActionController::API
def process_payload
Webhooks::TelegramEventsJob.perform_later(params.to_unsafe_hash)
head :ok
end
end