Skip to content

Commit

Permalink
feat: spring security permit url 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
chaeyoungeee committed Jul 23, 2024
1 parent fa4a0d3 commit edd8b3e
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 @@ public class SecurityConfig {

//권한별 url
private final String[] adminUrl = {"/admin/**"};
private final String[] permitAllUrl = {"/error", "/user/login" };
private final String[] permitAllUrl = {"/error", "/user/login", "/swagger", "/swagger-ui.html", "/swagger-ui/**", "/api-docs", "/api-docs/**", "/v3/api-docs/**", "/test" };
private final String[] anonymousUrl = {"/user/register"};


Expand Down

0 comments on commit edd8b3e

Please sign in to comment.