summaryrefslogtreecommitdiff
path: root/app/models/project_services/slack_mattermost/notifier.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/project_services/slack_mattermost/notifier.rb')
-rw-r--r--app/models/project_services/slack_mattermost/notifier.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/models/project_services/slack_mattermost/notifier.rb b/app/models/project_services/slack_mattermost/notifier.rb
deleted file mode 100644
index 1a78cea5933..00000000000
--- a/app/models/project_services/slack_mattermost/notifier.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-# frozen_string_literal: true
-
-module SlackMattermost
- module Notifier
- private
-
- def notify(message, opts)
- # See https://gitlab.com/gitlab-org/slack-notifier/#custom-http-client
- notifier = Slack::Messenger.new(webhook, opts.merge(http_client: HTTPClient))
- notifier.ping(
- message.pretext,
- attachments: message.attachments,
- fallback: message.fallback
- )
- end
-
- class HTTPClient
- def self.post(uri, params = {})
- params.delete(:http_options) # these are internal to the client and we do not want them
- Gitlab::HTTP.post(uri, body: params)
- end
- end
- end
-end