Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat : classification post list get api, 폴더별 post list get api 수정, 폴더 이름 list get api 에 정렬 적용 #39

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9fb09d1
Merge branch 'feat/foler-api' into dev-deploy
Marades Jun 29, 2024
89c27a1
Merge branch 'development' into dev-deploy
Marades Jun 29, 2024
cbb9130
Merge branch 'feat/foler-api' into dev-deploy
Marades Jun 29, 2024
6329a8c
Merge branch 'feat/foler-api' into dev-deploy
Marades Jun 29, 2024
25a8340
Feat : ai가 추천해주는 폴더로 post 모두 이동 api 구현
hye-on Jul 2, 2024
9641e26
Chore : 스키마 이름 수정
hye-on Jul 2, 2024
301c4b4
Feat : ai 분류 추천 리스트에서 링크 삭제 delete api 구현
hye-on Jul 3, 2024
db3cbe2
refactor : repository 생성
hye-on Jul 3, 2024
316bbb3
Chore : dto import 누락 수정
hye-on Jul 3, 2024
2634a65
refactor: method naming to camel-case
JonghunAn Jul 3, 2024
f818d60
Merge branch 'dev-deploy' into feature/ai-lambda
JonghunAn Jul 3, 2024
48fb6e5
Merge pull request #36 from mash-up-kr/feature/ai-lambda
JonghunAn Jul 3, 2024
7957b23
Feat : 폴더 이름 list에 정렬 추가
hye-on Jul 4, 2024
d89506b
Feat : 추천폴더별 링크 리스트에 페이지네이션 적용
hye-on Jul 5, 2024
ef224a2
Chore : controller.docs.ts에 ApiBearerAuth() 추가
hye-on Jul 5, 2024
2e6ef65
Chore : classification 폴더 이름 리스트 response에 totalCounts(분류한 링크 개수) 추가
hye-on Jul 5, 2024
f032141
Chore : 폴더별 링크 리스트 get api 이름 수정
hye-on Jul 5, 2024
8cfdc18
Chore : 분류 페이지 내 폴더 이름 get api 의 path 수정
hye-on Jul 5, 2024
03c0d81
Chore : 링크 리스트 get api path 수정
hye-on Jul 5, 2024
f22fdb6
Feat : ai 분류 페이지 내 전체 post list get api 추가, 폴더 별 post list api 수정
hye-on Jul 5, 2024
d098a3f
Merge remote-tracking branch 'origin/dev-deploy' into feature/classif…
hye-on Jul 5, 2024
797db2b
env : 윈도우 이슈로 수정..
hye-on Jul 5, 2024
024a732
Feat: Add count classified count API
J-Hoplin Jul 5, 2024
5500975
Merge branch 'feature/classification-list-api' of https://github.com/…
J-Hoplin Jul 5, 2024
d9d635e
Chore: Pnpm conflict
J-Hoplin Jul 5, 2024
f605f08
Fix: Modify method name of countClassifiedPost(controller, service, r…
J-Hoplin Jul 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.sentry-build-plugin
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SENTRY_AUTH_TOKEN=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
SENTRY_AUTH_TOKEN=
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "if [ -d dist ]; then rm -r dist; fi",
"prebuild": "rimraf dist",
"prebuild:worker": "if [ -d worker-dist ]; then rm -r worker-dist; fi",
"build": "npx webpack",
"build:worker": "pnpm run prebuild:worker && npx webpack -c worker-webpack.config.ts",
"deploy": "npm run build && sls deploy function -f server && npm run postdeploy",
"deploy:worker": "npm run build:worker && sls deploy function -f aiWorker && npm run postdeploy",
"deploy:all": "npm run build && npm run build:worker && sls deploy && npm run postdeploy",
"postdeploy": "if [ -d .serverless ]; then rm -r .serverless; fi",
"postdeploy": "rimraf .serverless",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"db:up": "docker-compose up -d",
"db:down": "docker compose down",
Expand Down Expand Up @@ -72,6 +72,7 @@
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.7",
"serverless": "^4.1.6",
"serverless-domain-manager": "^7.3.8",
"serverless-dotenv-plugin": "^6.0.0",
Expand Down
Loading