Jay
2025-03-06 17a767a89456e605df594125c7bebbc62f17044f
iailab-module-system/iailab-module-system-api/src/main/java/com/iailab/module/system/enums/oauth2/OAuth2GrantTypeEnum.java
@@ -22,7 +22,7 @@
    private final String grantType;
    public static OAuth2GrantTypeEnum getByGranType(String grantType) {
    public static OAuth2GrantTypeEnum getByGrantType(String grantType) {
        return ArrayUtil.firstMatch(o -> o.getGrantType().equals(grantType), values());
    }