Skip to content

Commit

Permalink
Merge branch 'feat/#110-join-room-server' into deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiyoung-Kim-57 committed Nov 26, 2024
2 parents 0b27592 + 8877719 commit c801350
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package struct CreateRoomResponseDTO: Encodable {
let roomID: String
let userID: String
let hostID: String
}

Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func routes(_ app: Application) throws {
let ids = roomManager.createRoom(client)
let dto = CreateRoomResponseDTO(
roomID: ids.roomID,
userID: ids.userID
hostID: ids.userID
)

guard let message = dto.toData(encoder) else {
Expand Down

0 comments on commit c801350

Please sign in to comment.