Skip to content

Commit

Permalink
AUTH-528: Fix extra clients (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalkm authored Mar 12, 2021
1 parent 42e177f commit 4b90195
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
- TRAVIS_WAIT_TIMEOUT=${TRAVIS_WAIT_TIMEOUT:-30}
- BRANCH=${TRAVIS_PULL_REQUEST_BRANCH:-${TRAVIS_BRANCH}}
- HELM_REPO_BASE_URL=https://kubernetes-charts.alfresco.com
- HELM_REPO=incubator
- HELM_REPO=${HELM_REPO:-incubator}
- KUBERNETES_VERSION=1.18.4
- HELM_VERSION=${HELM_VERSION:-3.2.4}

Expand Down
8 changes: 4 additions & 4 deletions helm/alfresco-identity-service/alfresco-realm.json
Original file line number Diff line number Diff line change
Expand Up @@ -1307,6 +1307,10 @@
"microprofile-jwt"
]
}
{{- range .Values.realm.alfresco.extraClients }}
{{- $noRoles := omit . "clientRoles" -}}
, {{ $noRoles | toJson }}
{{- end }}
],
"clientScopes": [
{
Expand Down Expand Up @@ -1792,10 +1796,6 @@
"display.on.consent.screen": "true"
}
}
{{- range .Values.realm.alfresco.extraClients }}
{{- $noRoles := omit . "clientRoles" -}}
, {{ $noRoles | toJson }}
{{- end }}
],
"defaultDefaultClientScopes": [
"role_list",
Expand Down

0 comments on commit 4b90195

Please sign in to comment.