Skip to content

Commit

Permalink
Github Webhook Controller에 인증 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
gidskql6671 committed May 28, 2024
1 parent a0e7844 commit a28a580
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ class SecurityConfig(
"/swagger-ui/**",
"/swagger-resources/**",
"/v3/api-docs/**",
"/token/**"
"/token/**",
"/github/webhook/**"
)


Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package knu.dong.onedayonebaek.oauth.filter

import io.github.oshai.kotlinlogging.KotlinLogging
import jakarta.servlet.FilterChain
import jakarta.servlet.ServletRequest
import jakarta.servlet.ServletResponse
Expand All @@ -24,7 +25,8 @@ class JwtAuthFilter(
"/swagger-ui",
"/swagger-resources",
"/v3/api-docs",
"/token"
"/token",
"/github/webhook"
)

override fun doFilter(request: ServletRequest, response: ServletResponse, chain: FilterChain) {
Expand Down

0 comments on commit a28a580

Please sign in to comment.