Chatwoot/app/controllers/api/v1/integrations/webhooks_controller.rb

8 lines
222 B
Ruby
Raw Normal View History

class Api::V1::Integrations::WebhooksController < ApplicationController
def create
builder = Integrations::Slack::IncomingMessageBuilder.new(params)
response = builder.perform
render json: response
end
end