chatwoot/chatwoot

View on GitHub
app/controllers/webhooks/telegram_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Webhooks::TelegramController < ActionController::API
  def process_payload
    Webhooks::TelegramEventsJob.perform_later(params.to_unsafe_hash)
    head :ok
  end
end