Skip to content

Commit c4d7d7e

Browse files
committed
[hotfix] 누락된 약관 화면 및 잘못된 회원탈퇴 파라미터 수정
1 parent b0302df commit c4d7d7e

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Projects/App/Resources/Pokit-info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
<string>$(AppleKeyID)</string>
77
<key>BGTaskSchedulerPermittedIdentifiers</key>
88
<string>com.pokitmons.pokit.taskidentifier</string>
9-
<key>FirebaseAppDelegateProxyEnabled</key>
10-
<false/>
119
<key>CFBundleDevelopmentRegion</key>
1210
<string>$(DEVELOPMENT_LANGUAGE)</string>
1311
<key>CFBundleDisplayName</key>
@@ -19,7 +17,7 @@
1917
<key>CFBundleInfoDictionaryVersion</key>
2018
<string>6.0</string>
2119
<key>CFBundleName</key>
22-
<string>$(PRODUCT_NAME)</string>
20+
<string>Pokit</string>
2321
<key>CFBundlePackageType</key>
2422
<string>APPL</string>
2523
<key>CFBundleShortVersionString</key>
@@ -45,6 +43,8 @@
4543
</array>
4644
<key>CFBundleVersion</key>
4745
<string>1</string>
46+
<key>FirebaseAppDelegateProxyEnabled</key>
47+
<false/>
4848
<key>GIDClientID</key>
4949
<string>$(GIDClientID)</string>
5050
<key>ITSAppUsesNonExemptEncryption</key>

Projects/CoreKit/Sources/Data/Network/Auth/AuthEndpoint.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ extension AuthEndpoint: TargetType {
7272
parameters: [
7373
"client_id": "com.pokitmons.pokit",
7474
"client_secret": requestModel.jwt,
75-
"token": refreshToken
75+
"token": refreshToken,
76+
"token_type_hint": "refresh_token"
7677
],
7778
encoding: URLEncoding.default
7879
)

Projects/Feature/FeatureLogin/Sources/AgreeToTerms/AgreeToTermsView.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ public extension AgreeToTermsView {
5454
}
5555
}
5656
}
57+
.fullScreenCover(isPresented: $store.isWebViewPresented) {
58+
PokitWebView(url: $store.webViewURL)
59+
.ignoresSafeArea()
60+
}
5761
.ignoresSafeArea(edges: .bottom)
5862
}
5963
}

Projects/Feature/FeatureSetting/Sources/Setting/PokitSettingFeature.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private extension PokitSettingFeature {
204204
switch action {
205205
case .회원탈퇴_네트워크:
206206
return .run { send in
207-
guard let refreshToken = keychain.read(.refreshToken) else {
207+
guard keychain.read(.refreshToken) != nil else {
208208
print("refresh가 없어서 벗어남")
209209
return
210210
}
@@ -228,7 +228,7 @@ private extension PokitSettingFeature {
228228
await send(.async(.키_제거))
229229

230230
try await authClient.appleRevoke(
231-
refreshToken,
231+
serverRefreshToken,
232232
AppleTokenRequest(
233233
authCode: authCode,
234234
jwt: jwt

0 commit comments

Comments
 (0)