diff --git a/sms-core/src/main/kotlin/team/msg/sms/domain/student/dto/res/MainStudentsResponseData.kt b/sms-core/src/main/kotlin/team/msg/sms/domain/student/dto/res/MainStudentsResponseData.kt index 6ef0e270..181a584e 100644 --- a/sms-core/src/main/kotlin/team/msg/sms/domain/student/dto/res/MainStudentsResponseData.kt +++ b/sms-core/src/main/kotlin/team/msg/sms/domain/student/dto/res/MainStudentsResponseData.kt @@ -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, diff --git a/sms-core/src/main/kotlin/team/msg/sms/domain/student/usecase/FindAllUseCase.kt b/sms-core/src/main/kotlin/team/msg/sms/domain/student/usecase/FindAllUseCase.kt index c0fb5d86..0cb258a6 100644 --- a/sms-core/src/main/kotlin/team/msg/sms/domain/student/usecase/FindAllUseCase.kt +++ b/sms-core/src/main/kotlin/team/msg/sms/domain/student/usecase/FindAllUseCase.kt @@ -61,8 +61,9 @@ fun List.toMainStudentsResponseData(): List, val projects: List, diff --git a/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoTeacherWebResponse.kt b/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoTeacherWebResponse.kt index d89783f2..c2f81599 100644 --- a/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoTeacherWebResponse.kt +++ b/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoTeacherWebResponse.kt @@ -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, diff --git a/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoWebResponse.kt b/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoWebResponse.kt index c5c8331c..8be95e70 100644 --- a/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoWebResponse.kt +++ b/sms-presentation/src/main/kotlin/team/msg/sms/domain/student/dto/res/DetailStudentInfoWebResponse.kt @@ -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, val projects: List, diff --git a/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/UserWebAdapter.kt b/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/UserWebAdapter.kt index aa46c722..77cd7f53 100644 --- a/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/UserWebAdapter.kt +++ b/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/UserWebAdapter.kt @@ -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, diff --git a/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/dto/res/UserProfileDetailWebResponse.kt b/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/dto/res/UserProfileDetailWebResponse.kt index 2f047552..91a05c6d 100644 --- a/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/dto/res/UserProfileDetailWebResponse.kt +++ b/sms-presentation/src/main/kotlin/team/msg/sms/domain/user/dto/res/UserProfileDetailWebResponse.kt @@ -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,