-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[🛠️ Refactor] RunnerLock 필드 변수명 변경 �+ Security Uri 상수화 + H2 웹 콘솔용 Web…
…SecurityCustomizer 제거 (#226) * refactor: RunnerLock 내부 필드 변수명 변경 * refactor: security permitall uri 상수화
- Loading branch information
Showing
3 changed files
with
31 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...nd/application/api/src/main/kotlin/io/raemian/api/support/constant/WebSecurityConstant.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package io.raemian.api.support.constant | ||
|
||
object WebSecurityConstant { | ||
val PUBLIC_URIS = arrayOf( | ||
"/auth/**", | ||
"/oauth2/**", | ||
"/login/**", | ||
"/one-baily-actuator/**", | ||
"/log/**", | ||
"/open/life-map/**", | ||
"/cheering/squad/**", | ||
"/cheering/count/**", | ||
// for swagger | ||
"/swagger*/**", | ||
"/v3/api-docs/**", | ||
"/swagger-resources/**", | ||
"/webjars/**", | ||
) | ||
} |