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

26 lines
771 B
Ruby
Raw Normal View History

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
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
# The deletion is done async, so the response is fast.
# On the mattermost side, this triggers an soft deletion first, after which
# the actuall data is removed
def destroy(team_id:)
session_delete("/api/v4/teams/#{team_id}?permanent=true")
end
end
end