diff options
author | Luke "Jared" Bennett <lbennett@gitlab.com> | 2017-02-15 13:49:14 +0000 |
---|---|---|
committer | Luke "Jared" Bennett <lbennett@gitlab.com> | 2017-03-05 21:05:48 +0000 |
commit | 2cc6485518c332d1452316e24155e921020886d9 (patch) | |
tree | 0117471810b2157b42a36cbbcf47edf893871207 /lib/mattermost | |
parent | b18646040c9b17c69ac66fb687b02450e161808c (diff) | |
download | gitlab-ce-2cc6485518c332d1452316e24155e921020886d9.tar.gz |
Improved team selection
Review changes
Diffstat (limited to 'lib/mattermost')
-rw-r--r-- | lib/mattermost/team.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mattermost/team.rb b/lib/mattermost/team.rb index 09dfd082b3a..afc152aa02e 100644 --- a/lib/mattermost/team.rb +++ b/lib/mattermost/team.rb @@ -1,7 +1,7 @@ module Mattermost class Team < Client def all - session_get('/api/v3/teams/all') + session_get('/api/v3/teams/all').values end end end |