1
0
mirror of synced 2026-04-27 03:58:53 +08:00

⬆️ 升级 JustAuth 版本:1.11.0,支持 GitLab酷家乐

This commit is contained in:
Yangkai.Shen
2019-09-04 18:57:04 +08:00
parent f702e70705
commit 741a322798
2 changed files with 5 additions and 1 deletions

View File

@@ -67,7 +67,7 @@
<!--SpringBoot版本-->
<spring-boot.version>2.1.6.RELEASE</spring-boot.version>
<!--JustAuth版本-->
<justauth.version>1.10.1</justauth.version>
<justauth.version>1.11.0</justauth.version>
</properties>
<dependencies>

View File

@@ -112,6 +112,10 @@ public class AuthRequestFactory {
return new AuthHuaweiRequest(config, authStateCache);
case WECHAT_ENTERPRISE:
return new AuthWeChatEnterpriseRequest(config, authStateCache);
case GITLAB:
return new AuthGitlabRequest(config, authStateCache);
case KUJIALE:
return new AuthKujialeRequest(config, authStateCache);
default:
throw new AuthException(AuthResponseStatus.UNSUPPORTED);
}