Ghost/core/server/data/importer
Fabien 'egg' O'Carroll 90a4d369db
Fixed imports for files missing the email_only key (#13284)
closes https://github.com/TryGhost/Team/issues/1024

Our importer would set the default value of all posts_meta keys to
`null`. This is an invalid value for the `email_only` key which only
accepts booleans.

Since we are already looping over the schema to create the default
values, we can use the `defaultTo` property in the schema to use the
intended default, and fall back to `null` if it doesn't exist.

We've used the `Reflect.has` function to determine if the `defaultTo`
key exists, as opposed to a truthy check, because it's possible that a
falsy value (e.g. false, in the case of email_only) can be used as the
default.
2021-09-06 11:51:42 +01:00
..
handlers Moved i18n to shared 2021-05-04 13:03:38 +01:00
importers Fixed imports for files missing the email_only key (#13284) 2021-09-06 11:51:42 +01:00
index.js Change to use @tryghost/logging 2021-06-15 15:59:11 +01:00