Skip to content

Commit

Permalink
Merge pull request #36 from nunsongCookie/main
Browse files Browse the repository at this point in the history
Fix: url 배포
  • Loading branch information
HyominAn0401 authored Dec 31, 2024
2 parents f659d9c + c2e82cc commit cd96c19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public ShareResponseDto generateShareUrl(ShareRequestDto requestDto) {
.orElseThrow(() -> new IllegalArgumentException("퀴즈를 찾을 수 없습니다. 퀴즈 ID: " + requestDto.getQuizId()));

// 공유 URL 생성
String shareUrl = "https://welcome2025.com/quiz/" + quiz.getId();
String shareUrl = "http://examready2025.site/quiz/" + quiz.getId();

return ShareResponseDto.builder()
.shareUrl(shareUrl)
Expand Down

0 comments on commit cd96c19

Please sign in to comment.