summaryrefslogtreecommitdiff
path: root/app/models/integrations/mattermost.rb
blob: 07a5086b8e986cee10ed8d2cf1ac8b1509f27027 (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
32
33
# frozen_string_literal: true

module Integrations
  class Mattermost < BaseChatNotification
    include SlackMattermostNotifier
    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
end