오디션 상세

- 오디션 배역 리스트 데이터에 대본 링크 추가
This commit is contained in:
Klaus 2024-12-28 01:11:26 +09:00
parent c9e90974bd
commit 1dba0a3d95
2 changed files with 2 additions and 0 deletions

View File

@ -24,5 +24,6 @@ data class GetAuditionRoleListData @QueryProjection constructor(
val id: Long,
val name: String,
val imageUrl: String,
val auditionScriptUrl: String,
val status: AuditionStatus
)

View File

@ -34,6 +34,7 @@ class AdminAuditionRoleQueryRepositoryImpl(
auditionRole.id,
auditionRole.name,
auditionRole.imagePath.prepend("/").prepend(cloudfrontHost),
auditionRole.auditionScriptUrl,
auditionRole.status
)
)