Vulcan/packages/custom/lib/routes.js

9 lines
130 B
JavaScript
Raw Normal View History

2014-12-11 12:07:41 +09:00
Meteor.startup(function () {
2015-04-13 16:29:33 +09:00
2014-12-11 12:07:41 +09:00
Router.route('/custom-path', {
name: 'customRoute',
2015-04-13 16:29:33 +09:00
template: 'customTemplate'
2014-12-11 12:07:41 +09:00
});
2015-04-13 16:29:33 +09:00
});