apostrophe-blog
Advanced tools
Comparing version 0.5.6 to 0.5.7
21
index.js
@@ -68,2 +68,23 @@ var async = require('async'); | ||
options.groupFields = options.groupFields || | ||
// We don't list the title field so it stays on top | ||
[ | ||
{ | ||
name: 'content', | ||
label: 'Content', | ||
icon: 'content', | ||
fields: [ | ||
'thumbnail', 'body' | ||
] | ||
}, | ||
{ | ||
name: 'details', | ||
label: 'Details', | ||
icon: 'metadata', | ||
fields: [ | ||
'slug', 'published', 'publicationDate', 'publicationTime', 'tags' | ||
] | ||
} | ||
]; | ||
options.modules = (options.modules || []).concat([ { dir: __dirname, name: 'blog' } ]); | ||
@@ -70,0 +91,0 @@ |
{ | ||
"name": "apostrophe-blog", | ||
"version": "0.5.6", | ||
"version": "0.5.7", | ||
"description": "Blogging for the Apostrophe content management system", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
23892
297