7 lines
173 B
Ruby
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
|