Skip to content

Commit

Permalink
Merge pull request #44 from nunsongCookie/main
Browse files Browse the repository at this point in the history
Feat: 공유링크 https 적용 수정 배포
  • Loading branch information
HyominAn0401 authored Dec 31, 2024
2 parents a55c384 + acf5bd8 commit 20f21af
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 = "http://examready2025.site/quiz/" + quiz.getId();
String shareUrl = "https://examready2025.site/quiz/" + quiz.getId();

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

0 comments on commit 20f21af

Please sign in to comment.