mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-10 14:19:08 +00:00
修正hasRole匹配为equals
This commit is contained in:
@@ -168,7 +168,7 @@ public class PreAuthorizeAspect
|
|||||||
}
|
}
|
||||||
for (String roleKey : userInfo.getRoles())
|
for (String roleKey : userInfo.getRoles())
|
||||||
{
|
{
|
||||||
if (SUPER_ADMIN.contains(roleKey) || roleKey.contains(role))
|
if (SUPER_ADMIN.equals(roleKey) || roleKey.equals(role))
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user