mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
13 lines
No EOL
420 B
JavaScript
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"});
|
|
}
|
|
}); |