Skip to content

Commit

Permalink
Merge pull request #158 from boostcampwm-2022/hotfix/release
Browse files Browse the repository at this point in the history
[BUG] 함수 메서드 이름 수정
  • Loading branch information
dahyeon405 authored Nov 30, 2022
2 parents 614a8f2 + c9083dd commit 0f582eb
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
60 changes: 30 additions & 30 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"start": "NODE_ENV=prod node -r ./tsconfig-paths.js dist/index.js"
},
"dependencies": {
"@prisma/client": "^4.6.1",
"@prisma/client": "^4.7.0",
"aws-sdk": "^2.1259.0",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
Expand Down Expand Up @@ -37,7 +37,7 @@
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"prisma": "^4.6.1",
"prisma": "^4.7.0",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"tsconfig-paths": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion backend/src/apis/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ router.post('/articles/temporary', catchAsync(articlesController.craeteTemporary

router.post('/image', multer().single('image'), catchAsync(imagesController.createImage));

router.get('/books/search', catchAsync(booksController.getSearchedBooks));
router.get('/books/search', catchAsync(booksController.searchBooks));
router.get('/books/:bookId', decoder, catchAsync(booksController.getBook));
router.get('/books', decoder, catchAsync(booksController.getBooks));
router.post('/books', catchAsync(guard), catchAsync(booksController.createBook));
Expand Down

0 comments on commit 0f582eb

Please sign in to comment.