Skip to content

Commit

Permalink
Type: swagger 적용 (#79)
Browse files Browse the repository at this point in the history
[Feat] Swagger 적용
  • Loading branch information
pingowl authored Nov 12, 2023
2 parents e9030ac + 00049f9 commit 4495aad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ dependencies {

implementation 'com.google.firebase:firebase-admin:9.1.1'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
}

// Querydsl 설정부
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
public class WebSecurityConfig {

private static final String[] WHITE_LIST_URL = {
"/auth/**"
"/auth/**",
"v3/api-docs/**",
"/swagger-resources",
"/swagger-resources/**",
"/swagger-ui/**",
"/swagger-ui.html"
};
private final JwtAuthenticationFilter jwtAuthFilter;
private final AuthenticationProvider authenticationProvider;
Expand Down

0 comments on commit 4495aad

Please sign in to comment.