We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ed3531 + 354985a commit 3d4183aCopy full SHA for 3d4183a
1 file changed
src/main/java/com/projectlyrics/server/domain/auth/authentication/interceptor/DeviceIdInterceptor.java
@@ -44,7 +44,10 @@ private boolean isExcluded(HttpServletRequest request) {
44
requestURI.equals("/api/v1/artists/search") ||
45
requestURI.equals("/api/v1/notes/artists") ||
46
requestURI.equals("/api/v1/notes/songs") ||
47
- requestURI.matches("/api/v1/songs/.*"));
+ requestURI.matches("/api/v1/songs/.*") ||
48
+ (requestURI.matches("/api/v1/events") && requestMethod.equalsIgnoreCase(HttpMethod.GET.name()))||
49
+ requestURI.matches("/api/v1/events/refuse") ||
50
+ (requestURI.matches("/api/v1/banners") && requestMethod.equalsIgnoreCase(HttpMethod.GET.name())));
51
}
52
53
private boolean hasNoAuth() {
0 commit comments