@budibase/worker 2.19.2 → 2.19.3

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": "2.19.2",
4
+ "version": "2.19.3",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -37,10 +37,10 @@
37
37
  "author": "Budibase",
38
38
  "license": "GPL-3.0",
39
39
  "dependencies": {
40
- "@budibase/backend-core": "2.19.2",
41
- "@budibase/pro": "2.19.2",
42
- "@budibase/string-templates": "2.19.2",
43
- "@budibase/types": "2.19.2",
40
+ "@budibase/backend-core": "2.19.3",
41
+ "@budibase/pro": "2.19.3",
42
+ "@budibase/string-templates": "2.19.3",
43
+ "@budibase/types": "2.19.3",
44
44
  "@koa/router": "8.0.8",
45
45
  "@techpass/passport-openidconnect": "0.3.2",
46
46
  "@types/global-agent": "2.1.1",
@@ -108,5 +108,5 @@
108
108
  }
109
109
  }
110
110
  },
111
- "gitHead": "e0cacd8993732dc9d156a92b0e6df026e76999e1"
111
+ "gitHead": "94ccb700406e797c31ab9c81c6d0a7203fc60332"
112
112
  }
@@ -498,6 +498,12 @@ export async function configChecklist(ctx: Ctx) {
498
498
 
499
499
  // They have set up a global user
500
500
  const userExists = await checkAnyUserExists()
501
+
502
+ // They have set up branding
503
+ const configDoc = await configs.getSettingsConfigDoc()
504
+ const config = configDoc.config
505
+ const branding = await pro.branding.getBrandingConfig(config)
506
+
501
507
  return {
502
508
  apps: {
503
509
  checked: apps.length > 0,
@@ -519,6 +525,7 @@ export async function configChecklist(ctx: Ctx) {
519
525
  label: "Set up single sign-on",
520
526
  link: "/builder/portal/settings/auth",
521
527
  },
528
+ branding,
522
529
  }
523
530
  }
524
531
  )