Skip to content

Commit

Permalink
Merge pull request #547 from sopt-makers/develop
Browse files Browse the repository at this point in the history
RELEASE 2024/11/10 20:30:00
  • Loading branch information
jun02160 authored Nov 11, 2024
2 parents c847b6c + e3a7bde commit a39f8d6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
12 changes: 0 additions & 12 deletions src/main/java/org/sopt/makers/internal/domain/Member.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import javax.persistence.*;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;

Expand Down Expand Up @@ -136,17 +135,6 @@ public class Member {
@ColumnDefault("true")
private Boolean isPhoneBlind = true;

@Builder.Default
@Column(nullable = false)
@ColumnDefault("false")
private Boolean isCoffeeChatActivate = false;

@Column(name = "coffee_chat_bio")
private String coffeeChatBio;

@Column(name = "coffee_chat_updated_at")
private LocalDateTime coffeeChatUpdatedAt;

public void editActivityChange(Boolean isCheck) {
this.editActivitiesAble = isCheck;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,8 @@ public interface MemberRepository extends JpaRepository<Member, Long> {

Optional<Member> findByAuthUserId(String authId);

Optional<Member> findByIdAndHasProfileTrue(Long id);

List<Member> findAllByNameContaining(String name);

List<Member> findAllByHasProfileTrue();

List<Member> findAllByIsCoffeeChatActivateTrue();

List<Member> findAllByHasProfileTrueAndIdIn(List<Long> memberIds);
Long countByIdIn(Set<Long> memberIds);
}

0 comments on commit a39f8d6

Please sign in to comment.