mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
22 lines
No EOL
409 B
JavaScript
22 lines
No EOL
409 B
JavaScript
var thumbnailProperty = {
|
|
propertyName: 'thumbnailUrl',
|
|
propertySchema: {
|
|
type: String,
|
|
optional: true
|
|
}
|
|
}
|
|
addToPostSchema.push(thumbnailProperty);
|
|
|
|
postModules.push({
|
|
template: 'postThumbnail',
|
|
position: 'leftOfCenter'
|
|
});
|
|
|
|
var embedlyKeyProperty = {
|
|
propertyName: 'embedlyKey',
|
|
propertySchema: {
|
|
type: String,
|
|
optional: true
|
|
}
|
|
}
|
|
addToSettingsSchema.push(embedlyKeyProperty); |