diff --git a/cosec-spring-boot-starter/src/main/kotlin/me/ahoo/cosec/spring/boot/starter/authentication/social/SocialAuthenticationProperties.kt b/cosec-spring-boot-starter/src/main/kotlin/me/ahoo/cosec/spring/boot/starter/authentication/social/SocialAuthenticationProperties.kt index f0663a60..979438be 100644 --- a/cosec-spring-boot-starter/src/main/kotlin/me/ahoo/cosec/spring/boot/starter/authentication/social/SocialAuthenticationProperties.kt +++ b/cosec-spring-boot-starter/src/main/kotlin/me/ahoo/cosec/spring/boot/starter/authentication/social/SocialAuthenticationProperties.kt @@ -56,6 +56,14 @@ class SocialAuthenticationProperties( authServerId: String?, ignoreCheckRedirectUri: Boolean = false, tenantId: String?, + kid: String?, + teamId: String?, + loginType: String = "CorpApp", + lang: String = "zh", + dingTalkOrgType: String?, + dingTalkCorpId: String?, + dingTalkExclusiveLogin: Boolean = false, + dingTalkExclusiveCorpId: String?, ) : AuthConfig( clientId, clientSecret, @@ -75,6 +83,14 @@ class SocialAuthenticationProperties( pkce, authServerId, ignoreCheckRedirectUri, - tenantId + tenantId, + kid, + teamId, + loginType, + lang, + dingTalkOrgType, + dingTalkCorpId, + dingTalkExclusiveLogin, + dingTalkExclusiveCorpId, ) } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index dc3f9c40..36e09ec3 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -11,7 +11,7 @@ guava = "33.3.1-jre" ognl = "3.4.3" javaJwt = "4.4.0" ip2region = "2.7.0" -justAuth = "1.16.6" +justAuth = "1.16.7" swagger = "2.2.27" hamcrest = "3.0" mockk = "1.13.13"