summaryrefslogtreecommitdiff
path: root/lib/mattermost/command.rb
blob: 830e61b015e3f9fcb92d865df86de109f3493591 (plain)
1
2
3
4
5
6
7
module Mattermost
  class Command
    def self.create(session, team_id, command)
      session.post("/api/v3/teams/#{team_id}/commands/create", body: command.to_json)['token']
    end
  end
end