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

28 lines
557 B
JavaScript
Raw Normal View History

2016-02-17 11:28:00 +09:00
Posts.addField([
/**
Count of the post's comments
*/
{
fieldName: "commentCount",
fieldSchema: {
type: Number,
optional: true,
public: true
}
},
/**
An array containing the `_id`s of commenters
*/
{
fieldName: "commenters",
fieldSchema: {
type: [String],
optional: true,
public: true
}
}
]);
2016-02-17 12:54:18 +09:00
Telescope.utils.addToFields(Posts.publishedFields.list, ["commentCount", "commenters"]);
Telescope.utils.addToFields(Posts.publishedFields.single, ["commentCount", "commenters"]);