Welcome to mirror list, hosted at ThFree Co, Russian Federation.

team.rb « mattermost « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 784eca6ab5a61e5f048515ac296873f970039ba7 (plain)
1
2
3
4
5
6
7
module Mattermost
  class Team < Client
    def all
      json_get('/api/v3/teams/all')
    end
  end
end