Skip to content

Commit

Permalink
chore : qr uri에 depth 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
wonjunYou committed Feb 13, 2024
1 parent 608e0f8 commit 065efbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class EventQrGenerator {
public static final String URI_PREFIX = "https://chart.apis.google.com/chart?cht=qr&chs=250x250&chl=";

public EventQrResponse generateQrCodeUri(String studentName, String studentNumber) {
String uri = URI_PREFIX + "https://ddingdong.club/event?studentName=" + studentName + "%26" + "studentNumber=" + studentNumber;
String uri = URI_PREFIX + "https://ddingdong.club/event/code?studentName=" + studentName + "%26" + "studentNumber=" + studentNumber;

return EventQrResponse.of(uri);
}
Expand Down

0 comments on commit 065efbf

Please sign in to comment.