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

27 lines
745 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Mattermost
2016-12-19 23:22:10 +00:00
class Team < Client
# Returns all teams that the current user is a member of
2016-12-19 23:22:10 +00:00
def all
session_get("/api/v4/users/me/teams")
end
2017-02-02 14:04:02 +00:00
2017-02-03 10:29:56 +00: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 19:34:29 +00:00
def create(name:, display_name:, type:)
session_post('/api/v4/teams', body: {
2017-03-01 19:34:29 +00:00
name: name,
display_name: display_name,
type: type
}.to_json)
2017-02-02 14:04:02 +00:00
end
# The deletion is done async, so the response is fast.
# On the mattermost side, this triggers an soft deletion
def destroy(team_id:)
session_delete("/api/v4/teams/#{team_id}")
end
end
end