Files
ProjectDeployer/lib/routes.js

11 lines
192 B
JavaScript

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