Browse Source

fix: page schema validation for extra field (#2097)

pull/2105/head
Regev Brody 4 years ago
committed by GitHub
parent
commit
4bc284b06e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. 4
      server/models/pages.js

4
server/models/pages.js

@ -856,8 +856,8 @@ module.exports = class Page extends Model {
creatorName: page.creatorName, creatorName: page.creatorName,
description: page.description, description: page.description,
extra: { extra: {
css: page.extra ? page.extra.css : '',
js: page.extra ? page.extra.js : ''
css: _.get(page, 'extra.css', ''),
js: _.get(page, 'extra.js', '')
}, },
isPrivate: page.isPrivate === 1 || page.isPrivate === true, isPrivate: page.isPrivate === 1 || page.isPrivate === true,
isPublished: page.isPublished === 1 || page.isPublished === true, isPublished: page.isPublished === 1 || page.isPublished === true,

Loading…
Cancel
Save