Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueHorn07 committed Sep 26, 2024
1 parent 37c9373 commit f31e882
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/popo/reservation/place/reserve.place.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ export class ReservePlaceController {

@Post()
@UseGuards(JwtAuthGuard)
async createWithNameAndId(@Req() req: Request, @Body() dto: CreateReservePlaceDto) {
async createWithNameAndId(
@Req() req: Request,
@Body() dto: CreateReservePlaceDto,
) {
const user = req.user as JwtPayload;
const existPlace = await this.placeService.findOneByUuidOrFail(
dto.place_id,
Expand Down

0 comments on commit f31e882

Please sign in to comment.