Skip to content

Commit

Permalink
Update dtable-web-api.js
Browse files Browse the repository at this point in the history
  • Loading branch information
r350178982 committed Mar 16, 2022
1 parent c230147 commit 92d7483
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/dtable-web-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -3132,6 +3132,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 = {
Expand Down

0 comments on commit 92d7483

Please sign in to comment.