UNPKG

391 BJavaScriptView Raw
1// Site map priority field for schemas, required
2// by our improvements of both apostrophe-custom-pages
3// and apostrophe-pieces
4
5module.exports = {
6 name: 'siteMapPriority',
7 type: 'float',
8 label: 'Sitemap Priority',
9 required: false,
10 def: null,
11 min: 0.1,
12 max: 1.0,
13 help: 'A number between 0.1 and 1.0. 1.0 is highest priority. Not all types of content appear in sitemaps.'
14};