fix(docker): 🐛 Runtime public environment
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { CollaborationType, Prisma, User, WorkspaceRole } from 'db'
|
||||
import { isNotEmpty } from 'utils'
|
||||
import { env } from 'utils'
|
||||
|
||||
const parseWhereFilter = (
|
||||
typebotIds: string[] | string,
|
||||
@ -20,7 +20,7 @@ const parseWhereFilter = (
|
||||
id: typeof typebotIds === 'string' ? typebotIds : { in: typebotIds },
|
||||
workspace:
|
||||
(type === 'read' && user.email === process.env.ADMIN_EMAIL) ||
|
||||
isNotEmpty(process.env.NEXT_PUBLIC_E2E_TEST)
|
||||
env('E2E_TEST') === 'enabled'
|
||||
? undefined
|
||||
: {
|
||||
members: {
|
||||
|
Reference in New Issue
Block a user