Skip to content

Commit

Permalink
Merge pull request #23 from osstotalsoft/fix-global-admin
Browse files Browse the repository at this point in the history
fix global admin
  • Loading branch information
niemenX authored Jun 13, 2023
2 parents 1627614 + 6603cdd commit cb6876f
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 cb6876f

Please sign in to comment.