Igloo-Club / Igloo-Club-BE

1 stars 1 forks source link

hotfix: 마케팅 수신 동의 약관 #88

Closed clap-0 closed 6 months ago

clap-0 commented 6 months ago

💜 작업 내용

✅ PR Point

기존 사용자들의 데이터 중 agreeMarketing 값이 null인 사용자들이 대다수였기 때문에 agreeMarketingnull인 경우에 마케팅 수신 동의 여부 값이 null이 아닌 false가 되도록 하였습니다.

@Getter
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class ConsentPolicyResponse {

    private Boolean agreeMarketing;

    public static ConsentPolicyResponse create(ConsentPolicy consentPolicy) {
        ConsentPolicyResponse response = new ConsentPolicyResponse();

        response.agreeMarketing = consentPolicy != null && consentPolicy.getAgreeMarketing();

        return response;
    }
}