Skip to content

Commit

Permalink
feat:#35 발자국 추가 및 조회
Browse files Browse the repository at this point in the history
  • Loading branch information
lywg committed Dec 1, 2022
1 parent 1269487 commit 6a4620d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/footprint/footprint.controller.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Controller, Get, Post, Body, Req } from '@nestjs/common';
import { FootprintService } from './footprint.service';
import { ApiCreatedResponse } from '@nestjs/swagger';

@Controller('footprint')
export class FootprintController {
Expand All @@ -10,11 +9,6 @@ export class FootprintController {

// 발자국 수 추가
@Post()
@ApiCreatedResponse({
status: 200,
type: CreateFootprintDto,
description: '발자국 수를 늘립니다.',
})
async updateFootPrint(@Req() req) {
return await this.footprintService.addFootprint(
req.user.user_id,
Expand Down

0 comments on commit 6a4620d

Please sign in to comment.