-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
210 additions
and
475 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 3 additions & 6 deletions
9
src/main/kotlin/com/ddd/sonnypolabobe/domain/board/controller/dto/BoardGetResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
package com.ddd.sonnypolabobe.domain.board.controller.dto | ||
|
||
import com.ddd.sonnypolabobe.domain.board.sticker.dto.StickerGetResponse | ||
import com.ddd.sonnypolabobe.domain.polaroid.controller.dto.PolaroidGetResponse | ||
import com.ddd.sonnypolabobe.domain.polaroid.dto.PolaroidGetResponse | ||
import io.swagger.v3.oas.annotations.media.Schema | ||
|
||
data class BoardGetResponse( | ||
@Schema(description = "제목", example = "쏘니의 보드") | ||
@field:Schema(description = "제목", example = "쏘니의 보드") | ||
val title: String, | ||
@Schema(description = "폴라로이드") | ||
@field:Schema(description = "폴라로이드") | ||
val items: List<PolaroidGetResponse>, | ||
@Schema(description = "스티커 리스트") | ||
val stickers : List<StickerGetResponse>? | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
...in/kotlin/com/ddd/sonnypolabobe/domain/board/sticker/controller/BoardStickerController.kt
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/main/kotlin/com/ddd/sonnypolabobe/domain/board/sticker/dto/StickerCreateRequest.kt
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
src/main/kotlin/com/ddd/sonnypolabobe/domain/board/sticker/dto/StickerGetResponse.kt
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...in/kotlin/com/ddd/sonnypolabobe/domain/board/sticker/repository/BoardStickerRepository.kt
This file was deleted.
Oops, something went wrong.
65 changes: 0 additions & 65 deletions
65
...otlin/com/ddd/sonnypolabobe/domain/board/sticker/repository/BoardStickerRepositoryImpl.kt
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/main/kotlin/com/ddd/sonnypolabobe/domain/board/sticker/service/StickerService.kt
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
src/main/kotlin/com/ddd/sonnypolabobe/domain/file/controller/dto/ImageResignedUrlResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
package com.ddd.sonnypolabobe.domain.file.controller.dto | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema | ||
|
||
data class ImageResignedUrlResponse( | ||
@field:Schema(description = "S3에 저장될 이미지 키", example = "imageKey") | ||
val imageKey : String, | ||
@field:Schema(description = "이미지 업로드를 위한 URL", example = "https://cloudfront.net/imageKey") | ||
val url : String | ||
) |
Oops, something went wrong.