Vulcan/packages/telescope-comments/lib/routes.js
2015-09-17 14:51:14 +09:00

13 lines
No EOL
420 B
JavaScript

FlowRouter.route('/comments/:_id', {
name: "commentPage",
action: function(params, queryParams) {
BlazeLayout.render("layout", {main: "comment_controller", commentTemplate: "comment_reply"});
}
});
FlowRouter.route('/comments/:_id/edit', {
name: "commentEdit",
action: function(params, queryParams) {
BlazeLayout.render("layout", {main: "comment_controller", commentTemplate: "comment_edit"});
}
});