2016-12-13 13:52:41 -05:00
|
|
|
module Mattermost
|
2016-12-19 18:22:10 -05:00
|
|
|
class Team < Client
|
2017-02-02 09:04:02 -05:00
|
|
|
# Returns **all** teams for an admin
|
2016-12-19 18:22:10 -05:00
|
|
|
def all
|
2017-02-15 08:49:14 -05:00
|
|
|
session_get('/api/v3/teams/all').values
|
2016-12-16 09:45:56 -05:00
|
|
|
end
|
2017-02-02 09:04:02 -05:00
|
|
|
|
2017-02-03 05:29:56 -05:00
|
|
|
# Creates a team on the linked Mattermost instance, the team admin will be the
|
|
|
|
# `current_user` passed to the Mattermost::Client instance
|
2017-03-01 14:34:29 -05:00
|
|
|
def create(name:, display_name:, type:)
|
|
|
|
session_post('/api/v3/teams/create', body: {
|
|
|
|
name: name,
|
|
|
|
display_name: display_name,
|
|
|
|
type: type
|
|
|
|
}.to_json)
|
2017-02-02 09:04:02 -05:00
|
|
|
end
|
2016-12-13 13:52:41 -05:00
|
|
|
end
|
|
|
|
end
|