Browse Source

add cli commands for user invite

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

+ 9
- 1
lib/api/user.js View File

@ -29,5 +29,13 @@ function invite(emails, callback){
};
module.exports = {
invite: invite
invite: invite,
getUsage: function(){
return [
"${command} user invite <address>..."
];
},
handleCli: function(subcommand, args, callback){
invite(args._.slice(4), callback)
}
};

Loading…
Cancel
Save