1
0
mirror of synced 2026-05-22 22:53:16 +00:00

部分配置项改为true

This commit is contained in:
click33
2024-08-18 22:30:39 +08:00
parent dd359b20d6
commit e8d3a6f137
@@ -37,13 +37,13 @@ public class SaOAuth2Config implements Serializable {
public Boolean isCode = true;
/** 是否打开模式:隐藏式(Implicit) */
public Boolean isImplicit = false;
public Boolean isImplicit = true;
/** 是否打开模式:密码式(Password) */
public Boolean isPassword = false;
public Boolean isPassword = true;
/** 是否打开模式:凭证式(Client Credentials */
public Boolean isClient = false;
public Boolean isClient = true;
/** 是否在每次 Refresh-Token 刷新 Access-Token 时,产生一个新的 Refresh-Token */
public Boolean isNewRefresh = false;