Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] #250 - 파이어베이스 공용계정으로 이전 하였습니다. #252

Merged
merged 5 commits into from
Feb 3, 2024

Conversation

thingineeer
Copy link
Collaborator

@thingineeer thingineeer commented Feb 3, 2024

🌱 작업한 내용

파이어 베이스 계정 이전으로 인한, URL 수정

applinks:rnnt.page.link 링크로 바꿧는데, 기존 applinks:runnect.page.link 링크(명진계정) 삭제 후
우남계정 에 만드려고 했으나
도메인이 한달정도 뒤에 지워진다해서 어쩔수 없이 applinks:rnnt.page.link 요렇게 바꿨습니다.

fastlane match파일 생성

이 부분은 private 레포의 브랜치 파서 (러넥트앱, 그 밖의 다른앱) 따로따로 인증서 관리를 위함 입니다.

📮 관련 이슈

@thingineeer thingineeer added the Fix label Feb 3, 2024
@thingineeer thingineeer requested a review from 513sojin February 3, 2024 07:19
@thingineeer thingineeer self-assigned this Feb 3, 2024
Copy link
Collaborator

@513sojin 513sojin left a comment

Choose a reason for hiding this comment

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

확인 완료~ 수고하셨습니다 !!

Comment on lines +11 to 25
struct KakaoAddressSearchingResponseDto: Codable { /// 사용 안함
let meta: Meta
let documents: [Document]

func toDepartureLocationModel(latitude: Double, longitude: Double) -> DepartureLocationModel {
let roadName = self.documents[0].roadAddress.buildingName ?? "내가 설정한 출발지"
let roadName = self.documents[0].roadAddress.buildingName

return DepartureLocationModel(departureName: roadName, departureAddress: self.documents[0].address.addressName, latitude: String(latitude), longitude: String(longitude))
return DepartureLocationModel(
departureName: roadName,
departureAddress: self.documents[0].address.addressName,
latitude: String(latitude),
longitude: String(longitude)
)
}
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

카카오 주소 검색 api 나중에 혹~시라도 활용할까봐 남겨뒀는데
사용하지 않을 것 같아서 관련 issue(191번)에서 작업하고 다시 언급드리겠습니당 ~ 이런거 하나까지 꼼꼼하게 봐주셔서 감사합니다 🙇🏻‍♀️

@@ -185,11 +185,13 @@ extension CourseDetailVC {
let description = publicCourse.description
let courseImage = publicCourse.image

let dynamicLinksDomainURIPrefix = "https://runnect.page.link"
let dynamicLinksDomainURIPrefix = "https://rnnt.page.link"
Copy link
Collaborator

Choose a reason for hiding this comment

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

pr 작업한 내용에 언급해주신거 확인했습니다 ~

@@ -211,7 +211,7 @@ extension MarathonMapCollectionViewCell {
LoadingIndicator.hideLoading()
}

guard let self = self else { return }
guard self != nil else { return }
Copy link
Collaborator

Choose a reason for hiding this comment

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

이 코드는 옵셔널 바인딩이 아니라 nil인지 아닌지를 확인하는 코드인건가요 ?!

@thingineeer thingineeer merged commit 964fd99 into Runnect:develop Feb 3, 2024
1 check passed
@thingineeer thingineeer deleted the #260-setting branch February 3, 2024 13:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Setting] #250 - release 2.0.0
2 participants