-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from themoment-team/fix/delete-board-list-fil…
…e-field 게시글 리스트 파일 필드 제거
- Loading branch information
Showing
5 changed files
with
9 additions
and
9 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
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
3 changes: 2 additions & 1 deletion
3
src/main/kotlin/team/themoment/gsmNetworking/domain/board/service/SaveBoardUseCase.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,8 +1,9 @@ | ||
package team.themoment.gsmNetworking.domain.board.service | ||
|
||
import team.themoment.gsmNetworking.domain.board.dto.BoardInfoDto | ||
import team.themoment.gsmNetworking.domain.board.dto.BoardListDto | ||
import team.themoment.gsmNetworking.domain.board.dto.BoardSaveDto | ||
|
||
interface SaveBoardUseCase { | ||
fun saveBoard(boardSaveDto: BoardSaveDto, authenticationId: Long): BoardListDto | ||
fun saveBoard(boardSaveDto: BoardSaveDto, authenticationId: Long): BoardInfoDto | ||
} |
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