@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.0",
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": "72863c719173848d3128cbef9556a0af09708c20"
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,
@@ -366,7 +366,6 @@ describe("configs", () => {
366
366
  oidc: false,
367
367
  oidcCallbackUrl: `http://localhost:10000/api/global/auth/${config.tenantId}/oidc/callback`,
368
368
  platformUrl: "http://localhost:10000",
369
- testimonialsEnabled: true,
370
369
  },
371
370
  }
372
371
  delete body._rev
@@ -4,7 +4,6 @@ export async function getLicensedConfig() {
4
4
  let licensedConfig: object = {}
5
5
  const defaults = {
6
6
  emailBrandingEnabled: true,
7
- testimonialsEnabled: true,
8
7
  platformTitle: undefined,
9
8
  metaDescription: undefined,
10
9
  loginHeading: undefined,