mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
78 lines
1.6 KiB
JavaScript
78 lines
1.6 KiB
JavaScript
import Users from "meteor/nova:users";
|
|
|
|
Users.addField([
|
|
{
|
|
fieldName: 'subscribedItems',
|
|
fieldSchema: {
|
|
type: Object,
|
|
optional: true,
|
|
blackbox: true,
|
|
hidden: true, // never show this
|
|
preload: true,
|
|
}
|
|
},
|
|
{
|
|
fieldName: 'subscribers',
|
|
fieldSchema: {
|
|
type: [String],
|
|
optional: true,
|
|
hidden: true, // never show this,
|
|
}
|
|
},
|
|
{
|
|
fieldName: 'subscriberCount',
|
|
fieldSchema: {
|
|
type: Number,
|
|
optional: true,
|
|
hidden: true, // never show this
|
|
}
|
|
}
|
|
]);
|
|
|
|
// check if nova:posts exists, if yes, add the custom fields to Posts
|
|
if (typeof Package['nova:posts'] !== "undefined") {
|
|
import Posts from 'meteor/nova:posts';
|
|
Posts.addField([
|
|
{
|
|
fieldName: 'subscribers',
|
|
fieldSchema: {
|
|
type: [String],
|
|
optional: true,
|
|
hidden: true, // never show this
|
|
}
|
|
},
|
|
{
|
|
fieldName: 'subscriberCount',
|
|
fieldSchema: {
|
|
type: Number,
|
|
optional: true,
|
|
hidden: true, // never show this
|
|
}
|
|
}
|
|
]);
|
|
|
|
}
|
|
|
|
// check if nova:categories exists, if yes, add the custom fields to Categories
|
|
if (typeof Package['nova:categories'] !== "undefined") {
|
|
import Categories from 'meteor/nova:categories';
|
|
Categories.addField([
|
|
{
|
|
fieldName: 'subscribers',
|
|
fieldSchema: {
|
|
type: [String],
|
|
optional: true,
|
|
hidden: true, // never show this
|
|
}
|
|
},
|
|
{
|
|
fieldName: 'subscriberCount',
|
|
fieldSchema: {
|
|
type: Number,
|
|
optional: true,
|
|
hidden: true, // never show this
|
|
}
|
|
}
|
|
]);
|
|
|
|
}
|