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 53acc9f commit 2d162c9Copy full SHA for 2d162c9
lib/Services/executor.js
@@ -33,6 +33,17 @@ class Executor extends Request {
33
return this.send('GET', path, { query });
34
}
35
36
+ /**
37
+ * @param {string} applicationId
38
+ * @param {string} userId
39
+ * @param {Object} query
40
+ */
41
+ searchRules(applicationId, userId, query) {
42
+ const path = `/rules/search`;
43
+ query = this.setTenant(applicationId, userId, query);
44
+ return this.send('GET', path, { query });
45
+ }
46
+
47
/**
48
* @param {string} applicationId
49
* @param {string} userId
0 commit comments