Vulcan/packages/telescope-comments/lib/routes.js

13 lines
420 B
JavaScript
Raw Normal View History

2015-09-17 14:51:14 +09:00
FlowRouter.route('/comments/:_id', {
name: "commentPage",
action: function(params, queryParams) {
BlazeLayout.render("layout", {main: "comment_controller", commentTemplate: "comment_reply"});
}
});
2015-09-17 14:51:14 +09:00
FlowRouter.route('/comments/:_id/edit', {
name: "commentEdit",
action: function(params, queryParams) {
BlazeLayout.render("layout", {main: "comment_controller", commentTemplate: "comment_edit"});
}
});