Guest User

Untitled

a guest
Mar 24th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Meteor.methods({
  2. 'tasks.insert'(text) {
  3. check(text, String);
  4.  
  5. // Make sure the user is logged in before inserting a task
  6. if (! this.userId) {
  7. throw new Meteor.Error('not-authorized');
  8. }
  9. }
  10.  
  11. tasksInsert(text) {
  12. // ...
  13. }
Add Comment
Please, Sign In to add comment