Jay
2025-02-19 a4ec2b72f1e9452e689294cd617a83111e0f868e
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());
    }