Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit becc496

Browse files
authored
Merge pull request #491 from cccvvv2012/admin_updates_1
fix cache for get endpoints
2 parents 217e460 + 8397167 commit becc496

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

actions/admins.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ exports.admins = {
7373
blockedConnectionTypes: [],
7474
outputExample: {},
7575
version: 'v2',
76+
cacheEnabled: false,
7677
transaction: 'read', // this action is read-only
7778
databases: ['tcs_catalog'],
7879
run: function (api, connection, next) {

actions/copilots.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ exports.copilots = {
6161
blockedConnectionTypes: [],
6262
outputExample: {},
6363
version: 'v2',
64+
cacheEnabled: false,
6465
transaction: 'read', // this action is read-only
6566
databases: ['tcs_catalog'],
6667
run: function (api, connection, next) {

actions/reviewers.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ exports.reviewers = {
140140
blockedConnectionTypes: [],
141141
outputExample: {},
142142
version: 'v2',
143+
cacheEnabled: false,
143144
transaction: 'read', // this action is read-only
144145
databases: ['tcs_catalog'],
145146
run: function (api, connection, next) {
@@ -326,4 +327,4 @@ exports.removeReviewer = {
326327
api.helper.handleNoConnection(api, connection, next);
327328
}
328329
}
329-
};
330+
};

0 commit comments

Comments
 (0)