Skip to content

Commit

Permalink
#394: Fixed roles in access-config.json templates
Browse files Browse the repository at this point in the history
  • Loading branch information
tuj committed Mar 4, 2024
1 parent a92a240 commit 1589328
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- [#230](https://github.com/os2display/display-admin-client/pull/230)
- Fixed roles in access-config.json templates.
- [#229](https://github.com/os2display/display-admin-client/pull/229)
- Fixed post body of activation POST request.
- [#228](https://github.com/os2display/display-admin-client/pull/228)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"roles": ["ROLE_ADMIN"]
},
"users": {
"roles": ["ROLE_EXTERNAL_USER_ADMIN"]
"roles": ["ROLE_ADMIN", "ROLE_EXTERNAL_USER_ADMIN"]
},
"shared": {
"roles": ["ROLE_ADMIN"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"roles": ["ROLE_ADMIN"]
},
"users": {
"roles": ["ROLE_EXTERNAL_USER_ADMIN"]
"roles": ["ROLE_ADMIN", "ROLE_EXTERNAL_USER_ADMIN"]
},
"shared": {
"roles": ["ROLE_ADMIN"]
Expand Down
2 changes: 1 addition & 1 deletion public/example-access-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"roles": ["ROLE_ADMIN"]
},
"users": {
"roles": ["ROLE_EXTERNAL_USER_ADMIN"]
"roles": ["ROLE_ADMIN", "ROLE_EXTERNAL_USER_ADMIN"]
},
"shared": {
"roles": ["ROLE_ADMIN"]
Expand Down

0 comments on commit 1589328

Please sign in to comment.