Skip to content

Commit

Permalink
AUTH-255: Add extraAdminUserRealmRoles posibilities (#78)
Browse files Browse the repository at this point in the history
* AUTH-255: Add extraAdminUserRealmRoles posibilities

* AUTH-255: Bump Version
  • Loading branch information
sergiuv2020 authored Feb 22, 2019
1 parent 0f0eb07 commit 351c918
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/alfresco-identity-service/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: alfresco-identity-service
version: 1.1.1
version: 1.1.2
description: The Alfresco Identity Service will become the central component responsible for identity-related capabilities needed by other Alfresco software, such as managing users, groups, roles, profiles, and authentication. Currently it deals just with authentication.
keywords:
- alfresco
Expand Down
11 changes: 10 additions & 1 deletion helm/alfresco-identity-service/alfresco-realm.json
Original file line number Diff line number Diff line change
Expand Up @@ -1707,7 +1707,16 @@
} ],
"disableableCredentialTypes" : [ "password" ],
"requiredActions" : [ ],
"realmRoles" : [ "uma_authorization", "user", "offline_access" ],
"realmRoles" : [
"uma_authorization",
"user",
"offline_access"
{{- if .Values.realm.alfresco.extraAdminUserRealmRoles -}}
{{- range .Values.realm.alfresco.extraAdminUserRealmRoles -}}
,
{{ . | toJson }}
{{- end }}
{{- end }} ],
"clientRoles" : {
"realm-management": [ "view-clients", "manage-users", "manage-clients", "view-users", "manage-realm", "view-realm" ],
"account" : [ "manage-account", "view-profile" ]
Expand Down

0 comments on commit 351c918

Please sign in to comment.