Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
3a54128d
Commit
3a54128d
authored
Jan 23, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'zj-mattermost-fixes' into 'master'
Mattermost fixes See merge request !8654
parents
8a6e4152
607b3c48
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
app/models/project_services/chat_notification_service.rb
app/models/project_services/chat_notification_service.rb
+7
-7
app/models/project_services/mattermost_service.rb
app/models/project_services/mattermost_service.rb
+1
-1
No files found.
app/models/project_services/chat_notification_service.rb
View file @
3a54128d
...
@@ -82,19 +82,19 @@ class ChatNotificationService < Service
...
@@ -82,19 +82,19 @@ class ChatNotificationService < Service
def
get_message
(
object_kind
,
data
)
def
get_message
(
object_kind
,
data
)
case
object_kind
case
object_kind
when
"push"
,
"tag_push"
when
"push"
,
"tag_push"
PushMessage
.
new
(
data
)
ChatMessage
::
PushMessage
.
new
(
data
)
when
"issue"
when
"issue"
IssueMessage
.
new
(
data
)
unless
is_update?
(
data
)
ChatMessage
::
IssueMessage
.
new
(
data
)
unless
is_update?
(
data
)
when
"merge_request"
when
"merge_request"
MergeMessage
.
new
(
data
)
unless
is_update?
(
data
)
ChatMessage
::
MergeMessage
.
new
(
data
)
unless
is_update?
(
data
)
when
"note"
when
"note"
NoteMessage
.
new
(
data
)
ChatMessage
::
NoteMessage
.
new
(
data
)
when
"build"
when
"build"
BuildMessage
.
new
(
data
)
if
should_build_be_notified?
(
data
)
ChatMessage
::
BuildMessage
.
new
(
data
)
if
should_build_be_notified?
(
data
)
when
"pipeline"
when
"pipeline"
PipelineMessage
.
new
(
data
)
if
should_pipeline_be_notified?
(
data
)
ChatMessage
::
PipelineMessage
.
new
(
data
)
if
should_pipeline_be_notified?
(
data
)
when
"wiki_page"
when
"wiki_page"
WikiPageMessage
.
new
(
data
)
ChatMessage
::
WikiPageMessage
.
new
(
data
)
end
end
end
end
...
...
app/models/project_services/mattermost_service.rb
View file @
3a54128d
...
@@ -36,6 +36,6 @@ class MattermostService < ChatNotificationService
...
@@ -36,6 +36,6 @@ class MattermostService < ChatNotificationService
end
end
def
default_channel_placeholder
def
default_channel_placeholder
"
#
town-square"
"town-square"
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment