Skip to content

Commit

Permalink
add-app-related-users-api
Browse files Browse the repository at this point in the history
  • Loading branch information
r350178982 committed Sep 20, 2023
1 parent cf53254 commit 9144951
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/dtable-web-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -1180,6 +1180,11 @@ class DTableWebAPI {
});
}

listAppRelatedUsers(token) {
let url = this.server + '/api/v2.1/universal-apps/' + token + '/app-related-users/';
return this.req.get(url);
}

searchAppUsers(token, query, page, perPage) {
let url = this.server + '/api/v2.1/universal-apps/' + token + '/search-user/';
let params = {
Expand Down

0 comments on commit 9144951

Please sign in to comment.