Optim: move routes to lib folder

This commit is contained in:
2015-10-29 13:41:30 +00:00
parent 37908bdb9f
commit fd483c0d27

11
lib/routes.js Normal file
View File

@@ -0,0 +1,11 @@
Router.configure({
layoutTemplate: 'layout' //can be any template name
});
Router.map(function () {
this.route('home', {
path: '/',
});
this.route('management');
});