Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
sleeg00 committed Jul 24, 2023
1 parent 3517819 commit addc882
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public class SecurityConfig {
"/frontend",
"/frontend/**", //프론트
"/api/get/infinity/posts", //무한스크롤
"/", //프론트
};
@Autowired
private CustomOAuth2UserService customOAuth2UserService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class MemberController {
@Autowired
private MemberService memberService;



@GetMapping("/api/home") //리다이렉트 필수
public void home(HttpServletRequest request, HttpServletResponse response,
Expand All @@ -48,7 +48,10 @@ public void home(HttpServletRequest request, HttpServletResponse response,
response.sendRedirect(redirectUrl);
}

@GetMapping("/") //리다이렉트 필수
public void test(){

}

@Operation(summary = "해당 유저 조회", description = "AccessToken을 헤더로 주면 회원정보를 조회합니다.")
@GetMapping("/api/get/members")
Expand Down

0 comments on commit addc882

Please sign in to comment.