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-24 12:33:41 -05:00
|
|
|
|
2014-12-25 17:42:54 -05:00
|
|
|
Router.route('/login', function() {
|
|
|
|
|
if (Meteor.user()) {
|
|
|
|
|
this.redirect('/checkout');
|
|
|
|
|
} else {
|
|
|
|
|
this.render("login");
|
|
|
|
|
}
|
|
|
|
|
});
|