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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
85f0229b
Commit
85f0229b
authored
Dec 23, 2016
by
Z.J. van de Weg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix inconsistent return type
parent
b60de9c0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
11 deletions
+11
-11
app/controllers/projects/mattermosts_controller.rb
app/controllers/projects/mattermosts_controller.rb
+4
-1
app/models/project_services/mattermost_slash_commands_service.rb
...els/project_services/mattermost_slash_commands_service.rb
+2
-2
lib/mattermost/client.rb
lib/mattermost/client.rb
+2
-2
spec/controllers/projects/mattermosts_controller_spec.rb
spec/controllers/projects/mattermosts_controller_spec.rb
+2
-2
spec/models/project_services/mattermost_slash_commands_service_spec.rb
...roject_services/mattermost_slash_commands_service_spec.rb
+1
-4
No files found.
app/controllers/projects/mattermosts_controller.rb
View file @
85f0229b
...
...
@@ -34,7 +34,10 @@ class Projects::MattermostsController < Projects::ApplicationController
end
def
teams
@teams
||=
@service
.
list_teams
(
current_user
)
@teams
||=
begin
teams
,
error_message
=
@service
.
list_teams
(
current_user
)
error_message
?
error_message
:
teams
end
end
def
service
...
...
app/models/project_services/mattermost_slash_commands_service.rb
View file @
85f0229b
...
...
@@ -30,8 +30,8 @@ class MattermostSlashCommandsService < ChatSlashCommandsService
def
list_teams
(
user
)
Mattermost
::
Team
.
new
(
user
).
all
rescue
Mattermost
::
Error
=>
e
[
[],
e
.
message
]
rescue
Mattermost
::
Error
[]
end
private
...
...
lib/mattermost/client.rb
View file @
85f0229b
...
...
@@ -27,12 +27,12 @@ module Mattermost
end
def
json_response
(
response
)
json_response
=
JSON
.
parse
(
response
.
body
)
unless
response
.
success?
raise
Mattermost
::
ClientError
.
new
(
json_response
[
'message'
]
||
'Undefined error'
)
end
json_response
=
JSON
.
parse
(
response
.
body
)
json_response
rescue
JSON
::
JSONError
raise
Mattermost
::
ClientError
.
new
(
'Cannot parse response'
)
...
...
spec/controllers/projects/mattermosts_controller_spec.rb
View file @
85f0229b
...
...
@@ -13,13 +13,13 @@ describe Projects::MattermostsController do
before
do
allow_any_instance_of
(
MattermostSlashCommandsService
).
to
receive
(
:list_teams
).
and_return
([])
end
it
'accepts the request'
do
get
(
:new
,
namespace_id:
project
.
namespace
.
to_param
,
project_id:
project
.
to_param
)
end
it
'accepts the request'
do
expect
(
response
).
to
have_http_status
(
200
)
end
end
...
...
spec/models/project_services/mattermost_slash_commands_service_spec.rb
View file @
85f0229b
...
...
@@ -113,10 +113,7 @@ describe MattermostSlashCommandsService, :models do
end
it
'shows error messages'
do
teams
,
message
=
subject
expect
(
teams
).
to
be_empty
expect
(
message
).
to
eq
(
'Failed to get team list.'
)
expect
(
subject
).
to
eq
([])
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