Skip to content

Instantly share code, notes, and snippets.

@joshterrill
Created March 15, 2014 20:30
Show Gist options
  • Save joshterrill/9573500 to your computer and use it in GitHub Desktop.
Save joshterrill/9573500 to your computer and use it in GitHub Desktop.
generates a random url and redirects to it, displaying publicScreen
Meteor.startup(function() {
var auto;
auto = Cookie.get('autosubscribe');
if (auto) {
return Router.go('publicScreen', {
_id: auto
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment