Skip to content

Commit

Permalink
Merge pull request #1 from kdt-8-4/feature/profilie_api호출시_토큰_누락_403_수정
Browse files Browse the repository at this point in the history
feature/profile api 요청 시 토큰이 누락된 경우의 403 예외처리 수정
  • Loading branch information
HeeSung98 authored Mar 24, 2024
2 parents d83ca83 + 2cae7f3 commit d02ef6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.weather.user.repository;

import com.weather.user.entity.MailCode;
import com.weather.user.entity.User;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ public void doFilterInternal(HttpServletRequest request, HttpServletResponse res

PrintWriter out = response.getWriter();
out.print(json);

return;
}
}

Expand Down

0 comments on commit d02ef6c

Please sign in to comment.