mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
14 lines
348 B
JavaScript
14 lines
348 B
JavaScript
// Add SEO settings.
|
|
addToSettingsSchema.push({
|
|
propertyName: "seoOgImage",
|
|
propertySchema: {
|
|
type: String,
|
|
optional: true,
|
|
regEx: SimpleSchema.RegEx.Url,
|
|
label: "og image",
|
|
autoform: {
|
|
group: "search engine optimization",
|
|
instructions: "URL to an image for the open graph image tag for all pages"
|
|
}
|
|
}
|
|
});
|