404 page 'added', actually just renders initial template

This commit is contained in:
ksjdragon 2015-02-09 20:23:39 -05:00
parent 59125b4f35
commit c90609fae7

View File

@ -39,6 +39,6 @@ Router.route('/teacher', function() {
this.redirect('/login'); this.redirect('/login');
} }
}); });
Router.plugin('dataNotFound', function() { Router.configure({
this.redirect('/') notFoundTemplate: "initial"
}); });