部分配置项改为true

This commit is contained in:
click33 2024-08-18 22:30:39 +08:00
parent dd359b20d6
commit e8d3a6f137

View File

@ -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;