Skip to content

Commit

Permalink
Merge pull request #84 from depromeet/dev
Browse files Browse the repository at this point in the history
🔨 fix(alarm) : fix alarmlist field name to list
  • Loading branch information
ImNM authored Jun 10, 2022
2 parents a6f1140 + d37349f commit 4c024f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apis/alarm/dto/alarmPaginationShow.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class AlarmPaginationShowDto {
constructor(noti_list: AlarmShowDto[], isLast: boolean, lastId: string) {
this.isLast = isLast;
this.lastId = lastId;
this.noti_list = noti_list;
this.list = noti_list;
}
// 직렬화
@ApiProperty({
Expand All @@ -18,7 +18,7 @@ export class AlarmPaginationShowDto {
})
@Expose()
@Type(() => AlarmShowDto)
noti_list: AlarmShowDto[];
list: AlarmShowDto[];

@ApiProperty({
type: String,
Expand Down

0 comments on commit 4c024f7

Please sign in to comment.