mattermost_service.rb 1.21 KB
Newer Older
1 2
# frozen_string_literal: true

3
class MattermostService < ChatNotificationService
4 5
  include ::SlackService::Notifier

6 7 8 9 10 11 12 13
  def title
    'Mattermost notifications'
  end

  def description
    'Receive event notifications in Mattermost'
  end

14
  def self.to_param
15
    'mattermost'
16 17 18 19 20 21
  end

  def help
    'This service sends notifications about projects events to Mattermost channels.<br />
    To set up this service:
    <ol>
22 23 24 25
      <li><a href="https://docs.mattermost.com/developer/webhooks-incoming.html#enabling-incoming-webhooks">Enable incoming webhooks</a> in your Mattermost installation.</li>
      <li><a href="https://docs.mattermost.com/developer/webhooks-incoming.html#creating-integrations-using-incoming-webhooks">Add an incoming webhook</a> in your Mattermost team. The default channel can be overridden for each event.</li>
      <li>Paste the webhook <strong>URL</strong> into the field below.</li>
      <li>Select events below to enable notifications. The <strong>Channel handle</strong> and <strong>Username</strong> fields are optional.</li>
26 27 28
    </ol>'
  end

29
  def default_channel_placeholder
30
    "Channel handle (e.g. town-square)"
31
  end
32 33 34 35

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