Skip to content

Conversation

@wjdalswl
Copy link
Member

@wjdalswl wjdalswl commented May 12, 2025

🩵 Issue

close #295


💙 변경된 내용

Android Scheme과 iOS Scheme을 통일시키면서 사용자 인자 값 이름들이 변경되었습니다!


🅿️ PR Point

딥링크 처리

private func handleDeeplink(_ url: URL) {
        guard let components = URLComponents(url: url, resolvingAgainstBaseURL: false),
              let redirect = components.queryItems?.first(where: { $0.name == "redirect" })?.value,
              let id = components.queryItems?.first(where: { $0.name == "internId" })?.value,
              redirect == "intern" else {
            return
        }

인자 이름 변경

let templateArgs: [String: String] = [
                    "COMPANY_IMG": job.companyImage,
                    "TITLE": job.title,
                    "DEADLINE": job.deadline,
                    "PERIOD": job.workingPeriod,
                    "START_DATE": job.startYearMonth,
                    "redirect": "intern",
                    "internId": "\(input.internshipAnnouncementId.value)"
                ]

📘 ScreenShot

ScreenRecording_05-12-2025.21-28-04_1.MP4

@wjdalswl wjdalswl requested a review from thingineeer May 12, 2025 12:28
@wjdalswl wjdalswl self-assigned this May 12, 2025
@wjdalswl wjdalswl added Fix 🐛 버그, 오류 해결, 코드 수정 민지 🌷 labels May 12, 2025
@wjdalswl wjdalswl linked an issue May 12, 2025 that may be closed by this pull request
1 task
Copy link
Member

@thingineeer thingineeer left a comment

Choose a reason for hiding this comment

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

고생 많았습니다~!!

@thingineeer thingineeer merged commit e18dc52 into main May 13, 2025
@thingineeer thingineeer deleted the Fix/#295 branch May 13, 2025 00:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Fix 🐛 버그, 오류 해결, 코드 수정 민지 🌷

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Fix] - 카카오톡 공유하기 사용자 인자 값 수정

3 participants