From 8934ff76ae6d1c57a1d32d5574a5b2b5afeb10c8 Mon Sep 17 00:00:00 2001 From: r350178982 <32759763+r350178982@users.noreply.github.com> Date: Tue, 22 Feb 2022 17:56:56 +0800 Subject: [PATCH] Update dtable-web-api.js --- src/dtable-web-api.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/dtable-web-api.js b/src/dtable-web-api.js index 5660500e..11986539 100644 --- a/src/dtable-web-api.js +++ b/src/dtable-web-api.js @@ -3214,6 +3214,17 @@ class DTableWebAPI { return this.req.get(url, {params: params}); } + sysAdminListScriptsRunningStatisticDetails(is_user, month, username, org_id) { + const url = this.server + '/api/v2.1/admin/statistics/scripts-running-details/'; + let params = { + is_user: is_user, + month: month, + owner: username, + org_id: org_id + }; + return this.req.get(url, {params: params}); + } + sysAdminListAutoRulesStatistics(is_user, month, page, perPage, orderBy) { const url = this.server + '/api/v2.1/admin/statistics/auto-rules/'; let params = {