mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
21 lines
366 B
JavaScript
21 lines
366 B
JavaScript
import Posts from "meteor/nova:posts";
|
|
|
|
Posts.addField([
|
|
{
|
|
fieldName: 'cloudinaryId',
|
|
fieldSchema: {
|
|
type: String,
|
|
optional: true,
|
|
viewableIf: ['anonymous'],
|
|
}
|
|
},
|
|
{
|
|
fieldName: 'cloudinaryUrls',
|
|
fieldSchema: {
|
|
type: [Object],
|
|
optional: true,
|
|
blackbox: true,
|
|
viewableIf: ['anonymous'],
|
|
}
|
|
}
|
|
]);
|