1
0
Fork 0
mirror of synced 2024-07-14 18:55:45 +12:00

Making sure tenant ID is always available to the builder websocket.

This commit is contained in:
mike12345567 2023-07-17 18:03:09 +01:00
parent eebd9d2d7c
commit d5a03bf5e3
2 changed files with 5 additions and 12 deletions

View file

@ -203,15 +203,6 @@ export function getTenantId(): string {
return tenantId
}
export function hasTenantId(): boolean {
if (!isMultiTenant()) {
return true
}
const context = Context.get()
const tenantId = context?.tenantId
return tenantId != null
}
export function getAutomationId(): string | undefined {
const context = Context.get()
return context?.automationId

View file

@ -15,7 +15,6 @@ import { gridSocket } from "./index"
import { clearLock, updateLock } from "../utilities/redis"
import { Socket } from "socket.io"
import { BuilderSocketEvent } from "@budibase/shared-core"
import { hasTenantId } from "@budibase/backend-core/src/context"
export default class BuilderSocket extends BaseSocket {
constructor(app: Koa, server: http.Server) {
@ -36,8 +35,11 @@ export default class BuilderSocket extends BaseSocket {
}
})
if (context.hasTenantId()) {
await events.user.dataCollaboration(Object.keys(userIdMap).length)
const tenantId = context.getTenantIDFromAppID(appId)
if (tenantId) {
await context.doInTenant(tenantId, async () => {
await events.user.dataCollaboration(Object.keys(userIdMap).length)
})
}
// Reply with all current sessions