Skip to content

Commit bd3d16c

Browse files
Merge pull request #326 from Teamie71/chore/release-beta-3-#323
Release: v1.0.0-beta.3
2 parents 9181256 + 60d5399 commit bd3d16c

8 files changed

Lines changed: 209 additions & 106 deletions

File tree

admin-client/assets/components/Modal.js

Lines changed: 202 additions & 99 deletions
Large diffs are not rendered by default.

docs/architecture/TICKET_GRANT_NOTICE_PROPOSAL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ src/modules/ticket/
309309
"ticketGrantId": 55,
310310
"status": "PENDING",
311311
"title": "보상이 지급되었어요",
312-
"body": "경험 정리 1회권 + 포트폴리오 첨삭 1회권이 지급되었어요.",
312+
"body": "경험 정리 1회권 + 포트폴리오 첨삭 1회권",
313313
"ctaText": "첨삭 의뢰하기",
314314
"ctaLink": "/correction/new",
315315
"payload": {

docs/development/FRONTEND_HANDOFF_TICKET_GRANT_NOTICE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"ticketGrantId": 55,
2222
"status": "PENDING",
2323
"title": "보상이 지급되었어요",
24-
"body": "서비스 이용 불편에 대한 보상으로 경험 정리 1회권이 지급되었어요.",
24+
"body": "경험 정리 1회권",
2525
"ctaText": "보러가기",
2626
"ctaLink": "/tickets",
2727
"payload": {

src/modules/admin/application/facades/admin-event-reward.facade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export class AdminEventRewardFacade {
235235

236236
return {
237237
title: '보상이 지급되었어요',
238-
body: `${rewardSummary}이 지급되었어요.`,
238+
body: rewardSummary,
239239
ctaText: event.ctaText ?? this.resolveCtaText(rewards),
240240
ctaLink: event.ctaLink ?? this.resolveCtaLink(rewards),
241241
payload: {

src/modules/interview/application/services/interview.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ describe('InterviewService', () => {
6363
path: '/api/v1/interview/sessions/session_123/chat/stream',
6464
body: {
6565
message: '안녕하세요',
66-
mentioned_insight_ids: [1],
66+
mentioned_insight_ids: ['1'],
6767
},
6868
});
6969
});

src/modules/ticket/application/dtos/ticket-grant-notice.dto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class TicketGrantNoticeResDTO {
3434
@ApiProperty({ example: '보상이 지급되었어요' })
3535
title: string;
3636

37-
@ApiProperty({ example: '경험 정리 1회권이 지급되었어요.' })
37+
@ApiProperty({ example: '경험 정리 1회권' })
3838
body: string;
3939

4040
@ApiPropertyOptional({ example: '첨삭 의뢰하기', nullable: true })

src/modules/ticket/application/facades/ticket-grant.facade.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('TicketGrantFacade', () => {
4141

4242
expect(result).toEqual({
4343
title: '보상이 지급되었어요',
44-
body: '경험 정리 1회권이 지급되었어요.',
44+
body: '경험 정리 1회권',
4545
ctaText: '보러가기',
4646
ctaLink: '/tickets',
4747
expiresAt,

src/modules/ticket/application/facades/ticket-grant.facade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class TicketGrantFacade {
152152
expiresAt?: Date | null;
153153
}): NoticeInput {
154154
const normalizedDisplayReason = this.normalizeDisplayReason(displayReason);
155-
const body = `${rewardSummary}이 지급되었어요.`;
155+
const body = rewardSummary;
156156

157157
return {
158158
title,

0 commit comments

Comments
 (0)