mirror of
https://github.com/suyiiyii/SIMS.git
synced 2026-06-23 05:48:22 +08:00
feat(cors): 允许option请求通过
This commit is contained in:
@@ -27,6 +27,9 @@ public class RbacInterceptor implements HandlerInterceptor {
|
||||
if ("/error".equals(request.getRequestURI())) {
|
||||
return true;
|
||||
}
|
||||
if ("OPTIONS".equals(request.getMethod())) {
|
||||
return true;
|
||||
}
|
||||
// 获取用户角色
|
||||
List<String> roles = getUserRole(request).stream().map(Role::getRoleName).toList();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user