@budibase/worker 3.19.0 → 3.19.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/worker",
|
|
3
3
|
"email": "hi@budibase.com",
|
|
4
|
-
"version": "3.19.
|
|
4
|
+
"version": "3.19.2",
|
|
5
5
|
"description": "Budibase background service",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "6d89c268f83c9702e183b1372e6db79ed1e48e9d"
|
|
113
113
|
}
|
|
@@ -346,7 +346,6 @@ export async function save(
|
|
|
346
346
|
if (existingConfig?.config && !brandingEnabled) {
|
|
347
347
|
const {
|
|
348
348
|
emailBrandingEnabled,
|
|
349
|
-
testimonialsEnabled,
|
|
350
349
|
platformTitle,
|
|
351
350
|
metaDescription,
|
|
352
351
|
loginHeading,
|
|
@@ -358,7 +357,6 @@ export async function save(
|
|
|
358
357
|
body.config = {
|
|
359
358
|
...body.config,
|
|
360
359
|
emailBrandingEnabled,
|
|
361
|
-
testimonialsEnabled,
|
|
362
360
|
platformTitle,
|
|
363
361
|
metaDescription,
|
|
364
362
|
loginHeading,
|
package/src/utilities/configs.ts
CHANGED