gitlab-org--gitlab-foss/lib/mattermost/team.rb

13 lines
247 B
Ruby
Raw Normal View History

module Mattermost
2016-12-19 23:22:10 +00:00
class Team < Client
2017-02-02 14:04:02 +00:00
# Returns **all** teams for an admin
2016-12-19 23:22:10 +00:00
def all
session_get('/api/v3/teams/all')
end
2017-02-02 14:04:02 +00:00
def create(params)
session_post('/api/v3/teams/create', body: params.to_json)
end
end
end