Advertisement
Guest User

Untitled

a guest
Aug 16th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Template.hello.onCreated(function helloOnCreated() {
  2. // counter starts at 0
  3. this.counter = new ReactiveVar(0);
  4. var userObject = {
  5. username: "anotherTest",
  6. mail: "anotherTest@me.com",
  7. password: "testingME"
  8. };
  9.  
  10. Accounts.createUser(userObject, function(error){
  11. console.log('User created');
  12. console.log(error);
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement