Skip to content

Commit

Permalink
fix global admin
Browse files Browse the repository at this point in the history
  • Loading branch information
gpalade committed Jun 13, 2023
1 parent 1627614 commit 6603cdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- ES_VERSION=7
- INDEXING_ENABLED=true
- JAVA_OPTS=-Dpolyglot.engine.WarnInterpreterOnly=false
image: niemen/conductor-server:7.1.6
image: niemen/conductor-server:7.1.7
networks:
- internal
ports:
Expand Down
2 changes: 1 addition & 1 deletion gql-bff/src/features/workflow/resolvers.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const workflowResolvers = {
...input,
description: JSON.stringify({
description: input?.description,
tenantId: isGlobalAdmin(externalUser) ? null : externalUser?.tenantId,
tenantId: externalUser?.tenantId,
}),
};

Expand Down

0 comments on commit 6603cdd

Please sign in to comment.