gitlab-org--gitlab-foss/app/models/project_services/slack_service.rb

32 lines
901 B
Ruby
Raw Normal View History

class SlackService < ChatNotificationService
2014-03-18 17:27:03 +00:00
def title
2016-11-25 19:36:37 +00:00
'Slack notifications'
2014-03-18 17:27:03 +00:00
end
def description
2016-11-25 19:36:37 +00:00
'Receive event notifications in Slack'
2014-03-18 17:27:03 +00:00
end
def self.to_param
'slack'
2014-03-18 17:27:03 +00:00
end
def help
2016-11-25 19:36:37 +00:00
'This service sends notifications about projects events to Slack channels.<br />
To set up this service:
2016-11-25 19:36:37 +00:00
<ol>
<li><a href="https://slack.com/apps/A0F7XDUAZ-incoming-webhooks">Add an incoming webhook</a> in your Slack team. The default channel can be overridden for each event.</li>
<li>Paste the <strong>Webhook URL</strong> into the field below.</li>
<li>Select events below to enable notifications. The <strong>Channel name</strong> and <strong>Username</strong> fields are optional.</li>
2016-11-25 19:36:37 +00:00
</ol>'
end
def default_channel_placeholder
"Channel name (e.g. general)"
end
def webhook_placeholder
'https://hooks.slack.com/services/…'
end
2014-03-18 17:27:03 +00:00
end