Update config defaults

This commit is contained in:
Tadeusz Sośnierz 2022-04-22 11:25:05 +02:00
parent 917ea003a2
commit ef91798bcb
2 changed files with 6 additions and 1 deletions

View File

@ -81,7 +81,8 @@ generic:
allowJsTransformationFunctions: false allowJsTransformationFunctions: false
waitForComplete: false waitForComplete: false
feeds: feeds:
# (Optional) Support for RSS/Atom feeds. # (Optional) Configure this to enable RSS/Atom feed support
#
enabled: false enabled: false
pollIntervalSeconds: 600 pollIntervalSeconds: 600
provisioning: provisioning:

View File

@ -106,6 +106,10 @@ export const DefaultConfig = new BridgeConfig({
} }
} }
}, },
feeds: {
enabled: false,
pollIntervalSeconds: 600,
},
provisioning: { provisioning: {
secret: "!secretToken" secret: "!secretToken"
}, },