Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public class SecurityConfig {
"/api/login/success",
"/api/v1/ws/**",
"/v3/api-docs/**", "/swagger-ui/**", "/swagger-resources/**",
"/api/test",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The addition of /api/test to the PERMIT_ALL_URL_ARRAY correctly allows unauthenticated access to this test endpoint. As per repository rule regarding temporary test fixtures in src/main/java, this is acceptable during early development stages. Please ensure this endpoint and its corresponding security configuration are removed or properly secured before the feature is considered complete and deployed to production.

References
  1. Test fixtures can be temporarily used in the main source set (src/main/java) to provide sample responses for top-down contract validation during early development stages. This code must be replaced with actual service logic before the feature is considered complete.

"/api/v1/tags/**",
"/actuator/health",
"/api/v1/auth/signup",
Expand Down
Loading