Skip to content

Commit

Permalink
[clean] make fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lim396 committed Nov 11, 2023
1 parent a385956 commit 3d6cbd3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion backend/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ model User {
model Room {
id Int @id @default(autoincrement())
name String
}
users User[]
}
5 changes: 4 additions & 1 deletion backend/src/room/room.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ export class RoomController {

@Patch(':id')
@ApiOkResponse({ type: RoomEntity })
update(@Param('id', ParseIntPipe) id: number, @Body() updateRoomDto: UpdateRoomDto) {
update(
@Param('id', ParseIntPipe) id: number,
@Body() updateRoomDto: UpdateRoomDto,
) {
return this.roomService.update(id, updateRoomDto);
}

Expand Down

0 comments on commit 3d6cbd3

Please sign in to comment.