class MattermostService < ChatNotificationService
def title
'Mattermost notifications'
end
def description
'Receive event notifications in Mattermost'
end
def self.to_param
'mattermost'
end
def help
'This service sends notifications about projects events to Mattermost channels.
To set up this service:
- Enable incoming webhooks in your Mattermost installation.
- Add an incoming webhook in your Mattermost team. The default channel can be overridden for each event.
- Paste the webhook URL into the field below.
- Select events below to enable notifications. The Channel handle and Username fields are optional.
'
end
def default_channel_placeholder
"Channel handle (e.g. town-square)"
end
def webhook_placeholder
'http://mattermost.example.com/hooks/…'
end
end