30 lines
820 B
Ruby
30 lines
820 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
# This API endpoint handles interaction payloads sent from Slack.
|
|
# See https://api.slack.com/interactivity/handling.
|
|
class Integrations
|
|
module Slack
|
|
class Interactions < ::API::Base
|
|
include Slack::Concerns::VerifiesRequest
|
|
|
|
feature_category :integrations
|
|
|
|
namespace 'integrations/slack' do
|
|
post :interactions, urgency: :low do
|
|
service_params = Gitlab::Json.parse(params[:payload]).deep_symbolize_keys!
|
|
response = ::Integrations::SlackInteractionService.new(service_params).execute
|
|
|
|
status :ok
|
|
|
|
response.payload
|
|
rescue StandardError => e
|
|
Gitlab::ErrorTracking.track_exception(e)
|
|
|
|
no_content!
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|