Skip to content

Commit 8934ff7

Browse files
committed
Update dtable-web-api.js
1 parent 17f06d4 commit 8934ff7

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/dtable-web-api.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3214,6 +3214,17 @@ class DTableWebAPI {
32143214
return this.req.get(url, {params: params});
32153215
}
32163216

3217+
sysAdminListScriptsRunningStatisticDetails(is_user, month, username, org_id) {
3218+
const url = this.server + '/api/v2.1/admin/statistics/scripts-running-details/';
3219+
let params = {
3220+
is_user: is_user,
3221+
month: month,
3222+
owner: username,
3223+
org_id: org_id
3224+
};
3225+
return this.req.get(url, {params: params});
3226+
}
3227+
32173228
sysAdminListAutoRulesStatistics(is_user, month, page, perPage, orderBy) {
32183229
const url = this.server + '/api/v2.1/admin/statistics/auto-rules/';
32193230
let params = {

0 commit comments

Comments
 (0)