Skip to content

Commit

Permalink
⚙️ :: (844) profile 사진 default
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyoil2 committed Nov 7, 2024
1 parent a4bb444 commit 688b4e8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Pattern;
import jakarta.validation.constraints.Size;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import team.retum.jobis.domain.auth.model.PlatformType;
import team.retum.jobis.domain.student.dto.request.StudentSignUpRequest;
import team.retum.jobis.domain.student.model.Gender;
import team.retum.jobis.global.util.ImageProperty;
import team.retum.jobis.global.util.RegexProperty;

@Getter
Expand Down Expand Up @@ -39,7 +41,7 @@ public class StudentSignUpWebRequest {
private Gender gender;

@Size(max = 300)
private String profileImageUrl;
private String profileImageUrl = ImageProperty.DEFAULT_STUDENT_PROFILE_IMAGE;

@NotNull
private PlatformType platformType;
Expand Down

0 comments on commit 688b4e8

Please sign in to comment.