summaryrefslogtreecommitdiff
path: root/lib/mattermost/command.rb
diff options
context:
space:
mode:
authorZ.J. van de Weg <git@zjvandeweg.nl>2016-12-13 19:52:41 +0100
committerZ.J. van de Weg <git@zjvandeweg.nl>2016-12-16 12:21:09 +0100
commit87d160634dfdaacd0dc382c26932786382d1be34 (patch)
tree3eb381dd13f1ebd0acdf6c5364f9c2639e057b26 /lib/mattermost/command.rb
parentdd385c7c3d3046da18c6c251bce25afab1129662 (diff)
downloadgitlab-ce-87d160634dfdaacd0dc382c26932786382d1be34.tar.gz
Base work for auto config MM slash commands
Diffstat (limited to 'lib/mattermost/command.rb')
-rw-r--r--lib/mattermost/command.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/mattermost/command.rb b/lib/mattermost/command.rb
new file mode 100644
index 00000000000..e159458a788
--- /dev/null
+++ b/lib/mattermost/command.rb
@@ -0,0 +1,26 @@
+module Mattermost
+ class Command
+ def self.all(team_id)
+ Mattermost::Mattermost.get("/teams/#{team_id}/commands/list_team_commands")
+ end
+
+ # params should be a hash, which supplies _at least_:
+ # - trigger => The slash command, no spaces, cannot start with a /
+ # - url => What is the URL to trigger here?
+ # - icon_url => Supply a link to the icon
+ def self.create(team_id, params)
+ params = {
+ auto_complete: true,
+ auto_complete_desc: 'List all available commands',
+ auto_complete_hint: '[help]',
+ description: 'Perform common operations on GitLab',
+ display_name: 'GitLab',
+ method: 'P',
+ user_name: 'GitLab'
+ }..merge(params)
+
+ Mattermost::Mattermost.post( "/teams/#{team_id}/commands/create", params.to_json).
+ parsed_response['token']
+ end
+ end
+end