Skip to content

Commit

Permalink
Update MemberController.java
Browse files Browse the repository at this point in the history
  • Loading branch information
gytjd committed Nov 18, 2024
1 parent 17db2be commit 6da6ea6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ public ListResult<MemberResponseDto> getAllMembers() {
public SingleResult<MemberCredentialDto> getMemberKey(
@PathVariable String email,
@PathVariable String companyName) {

System.out.println(email);
System.out.println(companyName);

Member findMember = memberService.getMemberByEmail(email);
if (findMember == null) {
return (SingleResult<MemberCredentialDto>) responseService.getFailResult("Member not found");
Expand Down

0 comments on commit 6da6ea6

Please sign in to comment.