Skip to content

Commit

Permalink
최종 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdozzi committed May 27, 2024
1 parent da2c14f commit 883b5e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
@RequiredArgsConstructor
@EnableWebSecurity
public class SecurityConfig {
public static final String PERMITTED_URI[] = {"/v3/**", "/swagger-ui/**", "/api/auth/**", "/login", "/favicon.ico"};
public static final String PERMITTED_URI[] = {"/v3/**", "/swagger-ui/**", "/api/auth/health-check", "/login",
"/favicon.ico"};
private static final String PERMITTED_ROLES[] = {"USER", "ADMIN"};
private final CustomCorsConfigurationSource customCorsConfigurationSource;
private final CustomOAuth2UserService customOAuthService;
Expand Down

0 comments on commit 883b5e1

Please sign in to comment.