We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f88dcb commit ee6f82cCopy full SHA for ee6f82c
lib/Services/executor.js
@@ -23,13 +23,13 @@ class Executor extends Request {
23
}
24
25
/**
26
- * @param {string} applicationId
27
- * @param {string} userId
+ * @param {string} applicationId
+ * @param {string} userId
28
+ * @param {Object} query
29
*/
- getRules(applicationId, userId) {
30
+ getRules(applicationId, userId, query) {
31
const path = `/rules`;
- const query = this.setTenant(applicationId, userId);
32
-
+ query = this.setTenant(applicationId, userId, query);
33
return this.send('GET', path, { query });
34
35
0 commit comments