mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
8 lines
222 B
Ruby
8 lines
222 B
Ruby
class Api::V1::Integrations::WebhooksController < ApplicationController
|
|
def create
|
|
builder = Integrations::Slack::IncomingMessageBuilder.new(params)
|
|
response = builder.perform
|
|
render json: response
|
|
end
|
|
end
|