Skip to content

Instantly share code, notes, and snippets.

@thegreatshasha
Created June 1, 2015 18:48
Show Gist options
  • Save thegreatshasha/8421d6ca4d03bfc90de9 to your computer and use it in GitHub Desktop.
Save thegreatshasha/8421d6ca4d03bfc90de9 to your computer and use it in GitHub Desktop.
Router.route('/meetings/add', {
name: 'addMeetingRoute',
template: 'addMeeting',
waitOn: function(){
return [Meteor.subscribe('hearings'), Meteor.subscribe('events'), Meteor.subscribe('projects'), Meteor.subscribe('tasks'), Meteor.subscribe('meetings'), Meteor.subscribe('lawyers')];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment