Skip to content

Commit

Permalink
fix: client-secret -> secret 필드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
psychology50 committed Apr 2, 2024
1 parent a18e5b9 commit 3fda716
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
public interface OauthOidcClientProperties {
String getJwksUri();

String getClientSecret();
String getSecret();
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
@ConfigurationProperties(prefix = "oauth2.client.provider.apple")
public class AppleOidcProperties implements OauthOidcClientProperties {
private final String jwksUri;
private final String clientSecret;
private final String secret;
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
@ConfigurationProperties(prefix = "oauth2.client.provider.google")
public class GoogleOidcProperties implements OauthOidcClientProperties {
private final String jwksUri;
private final String clientSecret;
private final String secret;
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
@ConfigurationProperties(prefix = "oauth2.client.provider.kakao")
public class KakaoOidcProperties implements OauthOidcClientProperties {
private final String jwksUri;
private final String clientSecret;
private final String secret;
}

0 comments on commit 3fda716

Please sign in to comment.