Vulcan/packages/nova-posts/lib/custom_fields.js

17 lines
No EOL
283 B
JavaScript

import Users from "meteor/nova:users";
Users.addField([
/**
Count of the user's posts
*/
{
fieldName: "__postCount",
fieldSchema: {
type: Number,
optional: true,
publish: true,
defaultValue: 0,
viewableIf: ['anonymous'],
}
}
]);