Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mattermost_service.rb « project_services « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 732a7c32a03d8eb8fbefb13d498e9172b6cefa55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

class MattermostService < ChatNotificationService
  include SlackMattermost::Notifier
  include ActionView::Helpers::UrlHelper

  def title
    s_('Mattermost notifications')
  end

  def description
    s_('Send notifications about project events to Mattermost channels.')
  end

  def self.to_param
    'mattermost'
  end

  def help
    docs_link = link_to _('Learn more.'), Rails.application.routes.url_helpers.help_page_url('user/project/integrations/mattermost'), target: '_blank', rel: 'noopener noreferrer'
    s_('Send notifications about project events to Mattermost channels. %{docs_link}').html_safe % { docs_link: docs_link.html_safe }
  end

  def default_channel_placeholder
    'my-channel'
  end

  def webhook_placeholder
    'http://mattermost.example.com/hooks/'
  end
end