Browse Source

add user cli help text

pull/14/head
Brett Langdon 11 years ago
parent
commit
83c47d69fe
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      lib/api/user.js

+ 7
- 0
lib/api/user.js View File

@ -35,6 +35,13 @@ module.exports = {
"${command} user invite <address>..." "${command} user invite <address>..."
]; ];
}, },
getHelp: function(){
return [
"User:",
" Commands:",
" invite <address>... invite the given list of e-mail addresses to your datadog org"
];
},
handleCli: function(subcommand, args, callback){ handleCli: function(subcommand, args, callback){
invite(args._.slice(4), callback) invite(args._.slice(4), callback)
} }


Loading…
Cancel
Save