mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08: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
|