Updated default config for newsletter badge

no refs

- Migrations were using previous default for badge which was set to `false`
- Default config for badge was `false` which caused migration to switch off the badge, updated to `true`
This commit is contained in:
Rish 2020-11-17 14:30:32 +05:30 committed by Rishabh Garg
parent 249c4a3e83
commit f53ab0f52b
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ module.exports = createTransactionalMigration(
logging.info('Updating newsletter_show_badge setting to default "false"');
await connection('settings')
.update({
value: 'false'
value: 'true'
})
.where({
key: 'newsletter_show_badge'

View File

@ -33,7 +33,7 @@
"paymentProcessors": [],
"emailTemplate": {
"showSiteHeader": true,
"showPoweredBy": false
"showPoweredBy": true
}
},
"logging": {