mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Update org_user.go
Add check for, if current role is ROLE_VIEWER, return true if the role I'm checking for is ROLE_VIEWER. Fixes #16092
This commit is contained in:
parent
f69f0c2c31
commit
6929593eb6
@ -35,6 +35,10 @@ func (r RoleType) Includes(other RoleType) bool {
|
|||||||
if r == ROLE_EDITOR {
|
if r == ROLE_EDITOR {
|
||||||
return other != ROLE_ADMIN
|
return other != ROLE_ADMIN
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if r == ROLE_VIEWER {
|
||||||
|
return other == ROLE_VIEWER
|
||||||
|
}
|
||||||
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user