Skip to content

Commit

Permalink
Merge pull request #51 from 9oormthon-univ/dev
Browse files Browse the repository at this point in the history
Email Validation 개선
  • Loading branch information
sumin220 authored Nov 23, 2024
2 parents 06e8d60 + 6469538 commit fc34a85
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@

## 서버 플로우 동작
<p align="center">
![image](https://github.com/user-attachments/assets/2fbff691-83bb-4a19-980e-72c617ab4321)
<img src="https://github.com/user-attachments/assets/97a26b16-72c8-4285-8d02-6cc68243cbff" alt="카카오 로그인">
</p>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import lombok.RequiredArgsConstructor;
import org.apache.logging.log4j.Logger;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
Expand Down Expand Up @@ -114,4 +113,4 @@ public ResponseEntity<Void> boardDelete(@User LoginUser loginUser,
boardService.boardDelete(loginUser.getMemberId(), boardId);
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public class Member {
@Column(nullable = false)
private String username;

@Column(nullable = false, unique = true)
private String email;

private Authority authority; //ADMIN, USER, SIGN_OUT
Expand Down

0 comments on commit fc34a85

Please sign in to comment.