Skip to content

v2025.11.11#101

Merged
withJihyuk merged 1 commit intomainfrom
develop
Nov 11, 2025
Merged

v2025.11.11#101
withJihyuk merged 1 commit intomainfrom
develop

Conversation

@withJihyuk
Copy link
Copy Markdown
Member

💡 JIRA TICKET

📃 작업내용

  • 빼빼로 먹기
  • 카카오톡 공간 사용 QR 링크 -> 버튼 형태로 수정
  • develop -> main

✅ PR 체크리스트

  • 이 작업으로 인해 변경이 필요한 문서가 변경되었나요? (e.g. .env, 노션, README)
  • 이 작업을 하고나서 공유해야할 팀원들에게 공유되었나요? (e.g. "API 개발 완료됐어요", "환경값 추가되었어요")
  • 작업한 코드가 정상적으로 동작하나요?
  • Merge 대상 브랜치가 올바른가요?
  • PR과 관련 없는 작업이 있지는 않나요?

@withJihyuk withJihyuk self-assigned this Nov 11, 2025
@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello @withJihyuk, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

이 PR은 기존에 사용되던 단축 URL 서비스의 기능을 완전히 제거하고, 공간 사용 QR 링크를 원본 형태로 직접 사용하도록 시스템을 간소화합니다. 또한, 카카오톡 알림 메시지 내 링크의 표시 형식을 개선하여, QR 링크를 버튼 형태로 제공하기 위한 준비를 마쳤습니다. 이는 불필요한 외부 의존성을 줄이고, 사용자에게 더욱 명확하고 간결한 정보 전달을 목표로 합니다.

Highlights

  • 단축 URL 서비스 제거: 기존에 QR 링크를 단축하는 데 사용되던 ShortUrlService 및 관련 클라이언트, DTO 파일들이 모두 제거되었습니다.
  • 카카오톡 알림 링크 형식 변경: 카카오톡 알림 전송 시, 링크 변수에서 'https://' 접두사를 제거하여 링크가 더 깔끔하게 표시되도록 수정되었습니다. 이는 QR 링크를 버튼 형태로 제공하기 위한 변경 사항과 연관됩니다.
  • 공간 사용 QR 링크 처리 로직 변경: CreateSpaceUsageUsecase에서 QR 링크를 더 이상 단축하지 않고 원본 링크를 직접 사용하도록 변경되었습니다. 이로 인해 ShortUrlService 의존성 및 관련 로깅 코드가 제거되었습니다.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@withJihyuk withJihyuk merged commit 605beea into main Nov 11, 2025
2 checks passed
Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

안녕하세요. 코드 변경사항을 검토했습니다. 전반적으로 QR 링크에 대한 단축 URL 생성 로직을 제거하고, 카카오톡 알림의 링크를 버튼 형식에 맞게 수정하는 작업이 잘 반영되었습니다. 사용하지 않는 shortUrl 관련 코드를 삭제하여 코드가 더 깔끔해졌습니다. 한 가지 개선점을 KakaoNotificationService.kt 파일에 제안했습니다. replace 대신 removePrefix를 사용하여 코드의 의도를 더 명확하게 하고 안정성을 높일 수 있습니다. 감사합니다.


kakaoOption.variables?.let { vars ->
vars["#{링크}"]?.let { link ->
vars["#{링크}"] = link.replace("https://", "")
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

카카오톡 버튼 링크를 위해 https:// 프로토콜을 제거하는 것으로 보입니다. replace 함수 대신 removePrefix를 사용하는 것이 더 의도에 맞고 안전합니다. replace는 문자열 중간에 있는 "https://"도 제거할 수 있지만, removePrefix는 문자열이 해당 접두사로 시작할 경우에만 제거합니다.

Suggested change
vars["#{링크}"] = link.replace("https://", "")
vars["#{링크}"] = link.removePrefix("https://")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant