Skip to content

Commit

Permalink
[HOTFIX] 잘못된 White URL - Auth Path 상수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yummygyudon committed Jan 13, 2025
1 parent 3df6b29 commit 40cf8e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private SystemConstant() {}
public static final String PATTERN_ALL = "/**";
public static final String PATTERN_ERROR_PATH = PATH_ERROR + PATTERN_ALL;
public static final String PATTERN_ACTUATOR = PATH_ACTUATOR + PATTERN_ALL;
public static final String PATTERN_AUTH = API_DEFAULT_PREFIX + PATH_AUTH + PATTERN_ALL;
public static final String PATTERN_AUTH = PATH_AUTH + PATTERN_ALL;
public static final String PATTERN_TEST = API_DEFAULT_PREFIX + PATH_TEST + PATTERN_ALL;
public static final String PATTERN_ROOT_PATH = "/";
}

0 comments on commit 40cf8e1

Please sign in to comment.