mirror of
https://github.com/suyiiyii/SIMS.git
synced 2026-06-23 15:46:53 +08:00
feat(cors): 暴力允许option请求通过
This commit is contained in:
@@ -28,7 +28,8 @@ public class RbacInterceptor implements HandlerInterceptor {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if ("OPTIONS".equals(request.getMethod())) {
|
if ("OPTIONS".equals(request.getMethod())) {
|
||||||
return true;
|
response.setStatus(HttpServletResponse.SC_OK);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
// 获取用户角色
|
// 获取用户角色
|
||||||
List<String> roles = getUserRole(request).stream().map(Role::getRoleName).toList();
|
List<String> roles = getUserRole(request).stream().map(Role::getRoleName).toList();
|
||||||
|
|||||||
Reference in New Issue
Block a user