Skip to content

Commit 693d24f

Browse files
committed
Merge branch 'develop' into feature/account-api
2 parents 08f384a + 2273fae commit 693d24f

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ jobs:
6565
script: |
6666
cd /home/ubuntu/app
6767
chmod +x deploy.sh # 스크립트 실행 권한 부여
68-
./deploy.sh # 스크립트 실행
68+
sudo ./deploy.sh # 스크립트 실행

src/main/java/fitfit/domain/token/filter/JwtAuthenticationFilter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public class JwtAuthenticationFilter extends OncePerRequestFilter {
2929
"/v3/api-docs/**",
3030
"/swagger-resources/**",
3131
"/api/members/auth/kko",
32-
"/api/members/auth/refresh"
32+
"/api/members/auth/refresh",
33+
"/api/members/nickname/check"
3334
);
3435

3536
private final JwtProvider jwtProvider;

src/main/java/fitfit/global/security/config/SecurityConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public SecurityFilterChain filterChain (HttpSecurity http) throws Exception {
4141
"/v3/api-docs/**",
4242
"/swagger-resources/**",
4343
"/api/members/auth/kko",
44-
"/api/members/auth/refresh"
44+
"/api/members/auth/refresh",
45+
"/api/members/nickname/check"
4546
).permitAll()
4647
.anyRequest().authenticated()
4748
)

0 commit comments

Comments
 (0)