Skip to content

Commit

Permalink
Merge pull request #339 from GSM-MSG/feature/338-portfolio-url-optional
Browse files Browse the repository at this point in the history
포트폴리오 옵셔널처리
  • Loading branch information
ani2689 authored Jun 3, 2024
2 parents c821228 + 451246f commit 91d91cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class ModifyStudentInfoRequestData(
val techStacks: List<String>,
val profileImgUrl: String,
val introduce: String,
val portfolioUrl: String,
val portfolioUrl: String?,
val contactEmail: String,
val formOfEmployment: FormOfEmployment,
val gsmAuthenticationScore: Int,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ data class ModifyStudentInfoWebRequest(
@field:Size(max = 50)
val introduce: String,

@field:NotBlank
@field:Pattern(regexp = "^(https?://).*")
val portfolioUrl: String,
val portfolioUrl: String?,

@field:NotBlank
@field:Email
Expand Down

0 comments on commit 91d91cd

Please sign in to comment.