Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ”€ :: 베타 ν…ŒμŠ€ν„° μš©λ„μš© profileImg μΆ”κ°€ #211

Merged
merged 1 commit into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import java.util.UUID

class MainStudentsResponseData(
val id: UUID,
val profileImgUrl: String,
@Deprecated(message = "μ „ Beta Version μ‚¬μš©μžλ“€μ˜ 접근성을 κ°œλ°©ν•˜κΈ° μœ„ν•˜μ—¬ ν˜„μž¬λ²„μ „μ—μ„œλŠ” μ‚¬μš©ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.")
val profileImg: String,
val major: String,
val name: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ fun List<Student.StudentWithUserInfo>.toMainStudentsResponseData(): List<MainStu
this.map {
MainStudentsResponseData(
id = it.id,
major = it.major,
profileImgUrl = it.profileImgUrl,
profileImg = it.profileImgUrl,
major = it.major,
name = it.name,
techStacks= it.techStack
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ class StudentWebAdapter(
name = this.name,
introduce = this.introduce,
major = this.major,
profileImgUrl = this.profileImg,
profileImg = this.profileImg,
techStacks = this.techStacks,
projects = this.projects,
Expand All @@ -90,6 +91,7 @@ class StudentWebAdapter(
number = this.number,
department = this.department,
major = this.major,
profileImgUrl = this.profileImg,
profileImg = this.profileImg,
techStacks = this.techStacks,
projects = this.projects,
Expand All @@ -100,22 +102,23 @@ class StudentWebAdapter(
DetailStudentInfoTeacherWebResponse(
name = this.name,
introduce = this.introduce,
portfolioUrl = this.portfolioUrl,
grade = this.grade,
classNum = this.classNum,
number = this.number,
department = this.department,
major = this.major,
profileImgUrl = this.profileImg,
profileImg = this.profileImg,
contactEmail = this.contactEmail,
techStacks = this.techStacks,
gsmAuthenticationScore = this.gsmAuthenticationScore,
formOfEmployment = this.formOfEmployment,
portfolioUrl = this.portfolioUrl,
certificates = this.certificates,
regions = this.regions,
militaryService = this.militaryService,
gsmAuthenticationScore = this.gsmAuthenticationScore,
salary = this.salary,
languageCertificates = this.languageCertificates,
regions = this.regions,
certificates = this.certificates,
techStacks = this.techStacks,
projects = this.projects,
prizes = this.prizes
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ data class DetailStudentInfoAnonymousWebResponse(
val name: String,
val introduce: String,
val major: String,
val profileImgUrl: String,
@Deprecated(message = "μ „ Beta Version μ‚¬μš©μžλ“€μ˜ 접근성을 κ°œλ°©ν•˜κΈ° μœ„ν•˜μ—¬ ν˜„μž¬λ²„μ „μ—μ„œλŠ” μ‚¬μš©ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.")
val profileImg: String,
val techStacks: List<String>,
val projects: List<ProjectResponseData>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ data class DetailStudentInfoTeacherWebResponse(
val number: Int,
val department: Department,
val major: String,
val profileImgUrl: String,
@Deprecated(message = "μ „ Beta Version μ‚¬μš©μžλ“€μ˜ 접근성을 κ°œλ°©ν•˜κΈ° μœ„ν•˜μ—¬ ν˜„μž¬λ²„μ „μ—μ„œλŠ” μ‚¬μš©ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.")
val profileImg: String,
val contactEmail: String,
val gsmAuthenticationScore: Int,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ data class DetailStudentInfoWebResponse(
val number: Int,
val department: Department,
val major: String,
val profileImgUrl: String,
@Deprecated(message = "μ „ Beta Version μ‚¬μš©μžλ“€μ˜ 접근성을 κ°œλ°©ν•˜κΈ° μœ„ν•˜μ—¬ ν˜„μž¬λ²„μ „μ—μ„œλŠ” μ‚¬μš©ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.")
val profileImg: String,
val techStacks: List<String>,
val projects: List<ProjectResponseData>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class UserWebAdapter(
department = this.department,
major = this.major,
profileImgUrl = this.profileImgUrl,
profileImg = this.profileImgUrl,
contactEmail = this.contactEmail,
gsmAuthenticationScore = this.gsmAuthenticationScore,
formOfEmployment = this.formOfEmployment,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ data class UserProfileDetailWebResponse(
val department: Department,
val major: String,
val profileImgUrl: String,
@Deprecated(message = "μ „ Beta Version μ‚¬μš©μžλ“€μ˜ 접근성을 κ°œλ°©ν•˜κΈ° μœ„ν•˜μ—¬ ν˜„μž¬λ²„μ „μ—μ„œλŠ” μ‚¬μš©ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.")
val profileImg: String,
val contactEmail: String,
val gsmAuthenticationScore: Int,
val formOfEmployment: FormOfEmployment,
Expand Down