Skip to content

Commit 6e2d295

Browse files
committed
update sysadmin update user/org apis
1 parent 3571145 commit 6e2d295

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/dtable-web-api.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3762,6 +3762,9 @@ class DTableWebAPI {
37623762
if (orgInfo.bigDataStorageQuotaMb) {
37633763
formData.append('big_data_storage_quota_mb', orgInfo.bigDataStorageQuotaMb);
37643764
}
3765+
if (orgInfo.autoRulesLimitPerMonth) {
3766+
formData.append('auto_rules_limit_per_month', orgInfo.autoRulesLimitPerMonth);
3767+
}
37653768
return this.req.put(url, formData);
37663769
}
37673770

@@ -3949,6 +3952,9 @@ class DTableWebAPI {
39493952
case 'unit':
39503953
formData.append('unit', value);
39513954
break;
3955+
case 'auto_rules_limit_per_month':
3956+
formData.append('auto_rules_limit_per_month', value);
3957+
break;
39523958
}
39533959
return this.req.put(url, formData);
39543960
}

0 commit comments

Comments
 (0)