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

Feature/#369 eslint, 알림 string 리턴 수정, swagger 성공하게 조건 변경 #370

Merged
merged 19 commits into from
Dec 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
630df7a
💄 style: eslint 깨지는 파일 수정
swkim12345 Dec 4, 2024
05f6fab
📝 docs: stockId 잘못 들어 있던 데코레이터 수정
swkim12345 Dec 4, 2024
dbf358f
📝 docs: response alarmresponse 로 수정
swkim12345 Dec 4, 2024
5be5b32
🐛 fix: bigint가 런타임때는 string으로 작동, decimal 15,2로 변경
swkim12345 Dec 4, 2024
9671941
🐛 fix: stock id를 이상하게 호출하는 문제 해결, express 와 동일한 구조로 되어있어 라우터 등록 순서에 영…
swkim12345 Dec 4, 2024
9b66696
🐛 fix: put 에러 수정, alarmDate -\> alarmExpiredDate로 명확화
swkim12345 Dec 4, 2024
f574cec
📝 docs: reqeust 업데이트
swkim12345 Dec 4, 2024
fab01e2
🐛 fix: alarmDate 업데이트
swkim12345 Dec 4, 2024
fc21237
🐛 fix: alarmExpiredDate로 변환, 이에 맞춰 docs도 업데이트
swkim12345 Dec 4, 2024
660cd55
✨ feat: 알림 서비스 검증 로직 구현
swkim12345 Dec 4, 2024
56df4e4
📝 docs: 알림 docs 에러 수정
swkim12345 Dec 4, 2024
fec6e1b
🐛 fix: expired date 논리 오류 수정
swkim12345 Dec 4, 2024
9c9a66c
💄 style: merge from dev-be
swkim12345 Dec 4, 2024
5dcf2e4
📝 docs: 원 추가
swkim12345 Dec 4, 2024
7215b99
🐛 fix: api/alarm/stock 받아올 때 중복 stock 수정
swkim12345 Dec 4, 2024
0f29bba
Merge branch 'dev-be' into feature/#365
swkim12345 Dec 4, 2024
13a9617
📝 docs: swagger 성공하게 변경
swkim12345 Dec 4, 2024
570189b
💄 style: 줄 제약으로 인한 커스텀 데코레이터 적용
swkim12345 Dec 4, 2024
d892479
🐛 fix: response에 number 추가
swkim12345 Dec 4, 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
Prev Previous commit
Next Next commit
📝 docs: reqeust 업데이트
swkim12345 committed Dec 4, 2024
commit f574cec95c1b1d7d5a2b99232676f3c46b918ebf
4 changes: 2 additions & 2 deletions packages/backend/src/alarm/dto/alarm.request.ts
Original file line number Diff line number Diff line change
@@ -23,8 +23,8 @@ export class AlarmRequest {

@ApiProperty({
description: '알림 종료 날짜',
example: '2024-12-01T00:00:00Z',
example: '2026-12-01T00:00:00Z',
required: false,
})
alarmDate?: Date;
alarmExpiredDate?: Date;
}