Skip to content

Commit

Permalink
chore: swagger whitelist 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
wjddn2165 committed Aug 6, 2024
1 parent c32c187 commit a1b3219
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
@RequiredArgsConstructor
public class JwtAuthorizationFilter implements Filter {

private final String[] whiteListUris = new String[]{"/event/auth", "/event/rush", "/event/lottery/caspers", "/admin/join", "/admin/auth", "/h2", "/h2/*"};
private final String[] whiteListUris = new String[]{"/event/auth", "/event/rush", "/event/lottery/caspers", "/admin/join", "/admin/auth", "/h2", "/h2/*", "/swagger-ui/*"};
private final String[] blackListUris = new String[]{"/event/rush/*"};

private final JwtProvider jwtProvider;
Expand Down

0 comments on commit a1b3219

Please sign in to comment.