mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 03:44:29 +03:00
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:
parent
249c4a3e83
commit
f53ab0f52b
@ -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'
|
||||
|
@ -33,7 +33,7 @@
|
||||
"paymentProcessors": [],
|
||||
"emailTemplate": {
|
||||
"showSiteHeader": true,
|
||||
"showPoweredBy": false
|
||||
"showPoweredBy": true
|
||||
}
|
||||
},
|
||||
"logging": {
|
||||
|
Loading…
Reference in New Issue
Block a user