From 83c47d69fe58172b84555180283aa2811ecc95bc Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 21 Mar 2015 15:09:02 -0400 Subject: [PATCH] add user cli help text --- lib/api/user.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/api/user.js b/lib/api/user.js index 3436ca6..728c419 100644 --- a/lib/api/user.js +++ b/lib/api/user.js @@ -35,6 +35,13 @@ module.exports = { "${command} user invite
..." ]; }, + getHelp: function(){ + return [ + "User:", + " Commands:", + " invite
... invite the given list of e-mail addresses to your datadog org" + ]; + }, handleCli: function(subcommand, args, callback){ invite(args._.slice(4), callback) }