Merge branch '98-monitoring-access-not-listed-for-new-user' into 'main'
Resolve "Monitoring access not listed for new user" Closes #98 See merge request stackspin/dashboard!57
This commit is contained in:
commit
f6e0e4b608
2 changed files with 8 additions and 0 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
- Fix bug of missing "Monitoring" app access when creating a new user.
|
||||||
|
|
||||||
## [0.5.0]
|
## [0.5.0]
|
||||||
|
|
||||||
- Merge dashboard-backend repository into this repository, released as 0.5.0
|
- Merge dashboard-backend repository into this repository, released as 0.5.0
|
||||||
|
|
|
@ -63,6 +63,10 @@ export const initialAppRoles = [
|
||||||
name: 'zulip',
|
name: 'zulip',
|
||||||
role: UserRole.User,
|
role: UserRole.User,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'monitoring',
|
||||||
|
role: UserRole.NoAccess,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const initialUserForm = {
|
export const initialUserForm = {
|
||||||
|
|
Loading…
Reference in a new issue