19 lines
321 B
JavaScript
Raw Normal View History

2014-12-23 21:09:30 -05:00
Router.route('/', function() {
this.render("initial");
})
2014-12-25 17:42:54 -05:00
Router.route('/checkout', function() {
if (Meteor.user()) {
this.render("checkout");
} else {
this.redirect('/login');
}
});
2014-12-25 17:42:54 -05:00
Router.route('/login', function() {
if (Meteor.user()) {
this.redirect('/checkout');
} else {
this.render("login");
}
});