Skip to content

Commit

Permalink
feat: Add security config
Browse files Browse the repository at this point in the history
  • Loading branch information
devmizz committed Sep 27, 2024
1 parent 1f887ea commit 1a19eff
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ private RequestMatcher getMatcherForUserAndAdmin() {
antMatcher(HttpMethod.GET, "/api/v1/genres/unsubscriptions"),
antMatcher(HttpMethod.POST, "/api/v1/artists/subscribe"),
antMatcher(HttpMethod.POST, "/api/v1/artists/unsubscribe"),
antMatcher(HttpMethod.GET, "/api/v1/artists/subscriptions")
antMatcher(HttpMethod.GET, "/api/v1/artists/subscriptions"),
antMatcher(HttpMethod.GET, "/api/v1/users/notifications"),
antMatcher(HttpMethod.GET, "/api/v1/users/notifications/unread")
);
}
}

0 comments on commit 1a19eff

Please sign in to comment.