mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
46 lines
No EOL
764 B
JavaScript
46 lines
No EOL
764 B
JavaScript
Settings.addField([
|
|
{
|
|
fieldName: 'cloudinaryCloudName',
|
|
fieldSchema: {
|
|
type: String,
|
|
optional: true,
|
|
autoform: {
|
|
group: 'cloudinary'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
fieldName: 'cloudinaryAPIKey',
|
|
fieldSchema: {
|
|
type: String,
|
|
optional: true,
|
|
private: true,
|
|
autoform: {
|
|
group: 'cloudinary',
|
|
class: 'private-field'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
fieldName: 'cloudinaryAPISecret',
|
|
fieldSchema: {
|
|
type: String,
|
|
optional: true,
|
|
private: true,
|
|
autoform: {
|
|
group: 'cloudinary',
|
|
class: 'private-field'
|
|
}
|
|
}
|
|
}
|
|
]);
|
|
|
|
Posts.addField([
|
|
{
|
|
fieldName: 'originalThumbnailUrl',
|
|
fieldSchema: {
|
|
type: String,
|
|
optional: true
|
|
}
|
|
}
|
|
]); |