debian-mirror-gitlab/app/models/integrations/mattermost.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
951 B
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
module Integrations
class Mattermost < BaseChatNotification
include SlackMattermostNotifier
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
2022-05-07 20:08:51 +05:30
docs_link = ActionController::Base.helpers.link_to _('Learn more.'), Rails.application.routes.url_helpers.help_page_url('user/project/integrations/mattermost'), target: '_blank', rel: 'noopener noreferrer'
2021-09-04 01:27:46 +05:30
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
2023-01-13 00:05:48 +05:30
def webhook_help
2021-09-04 01:27:46 +05:30
'http://mattermost.example.com/hooks/'
end
2022-08-13 15:12:31 +05:30
override :configurable_channels?
def configurable_channels?
true
end
2021-09-04 01:27:46 +05:30
end
end