Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Meteor.publishComposite 'catalog',->
  2. if @userId? and Roles.userIsInRole @userId, ['admin']
  3. filter = {}
  4. else
  5. filter =
  6. isPublished: true
  7.  
  8. find: ->
  9. Bands.find
  10. filter
  11. children:
  12. find:(band)->
  13. bandid = band_id
  14. filter
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement