Skip to content

Commit

Permalink
🔥 :: [#542] Google Secret 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed May 20, 2024
1 parent 4f00c0a commit 8d7f31e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions Projects/App/Support/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@
<string>$(BASE_PROD_URL)</string>
<key>GOOGLE_CLIENT_ID</key>
<string>$(GOOGLE_CLIENT_ID)</string>
<key>GOOGLE_SECRET_KEY</key>
<string>$(GOOGLE_SECRET_KEY)</string>
<key>GOOGLE_URL_SCHEME</key>
<string>$(GOOGLE_URL_SCHEME)</string>
<key>NAVER_APP_NAME</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public class GoogleLoginManager {
private let accessTokenGoogleURL = "https://oauth2.googleapis.com"
private let getProfileURL = "https://www.googleapis.com/oauth2/v1/userinfo"
private let googleClientID = GOOGLE_CLIENT_ID()
private let googleSecretKey = GOOGLE_SECRET_KEY()
private let googleURLScheme = GOOGLE_URL_SCHEME()
private let scope = "profile"

Expand Down
4 changes: 0 additions & 4 deletions Projects/Modules/Utility/Sources/Utils/Secrets.swift
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,6 @@ public func GOOGLE_CLIENT_ID() -> String {
return config(key: "GOOGLE_CLIENT_ID")
}

public func GOOGLE_SECRET_KEY() -> String {
return config(key: "GOOGLE_SECRET_KEY")
}

/// WAKTAVERSEMUSIC
public func WM_APP_ID() -> String {
return config(key: "WM_APP_ID")
Expand Down

0 comments on commit 8d7f31e

Please sign in to comment.