ed1c871633
- Integrations architecture - Slack integration
7 lines
222 B
Ruby
7 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
|