diff --git a/actions/admins.js b/actions/admins.js index 842ebeae9..3348a70cd 100755 --- a/actions/admins.js +++ b/actions/admins.js @@ -73,6 +73,7 @@ exports.admins = { blockedConnectionTypes: [], outputExample: {}, version: 'v2', + cacheEnabled: false, transaction: 'read', // this action is read-only databases: ['tcs_catalog'], run: function (api, connection, next) { diff --git a/actions/copilots.js b/actions/copilots.js index a0fa9a4cf..2dc0b68dd 100755 --- a/actions/copilots.js +++ b/actions/copilots.js @@ -61,6 +61,7 @@ exports.copilots = { blockedConnectionTypes: [], outputExample: {}, version: 'v2', + cacheEnabled: false, transaction: 'read', // this action is read-only databases: ['tcs_catalog'], run: function (api, connection, next) { diff --git a/actions/reviewers.js b/actions/reviewers.js index 510ab4ea0..2f2891f88 100755 --- a/actions/reviewers.js +++ b/actions/reviewers.js @@ -140,6 +140,7 @@ exports.reviewers = { blockedConnectionTypes: [], outputExample: {}, version: 'v2', + cacheEnabled: false, transaction: 'read', // this action is read-only databases: ['tcs_catalog'], run: function (api, connection, next) { @@ -326,4 +327,4 @@ exports.removeReviewer = { api.helper.handleNoConnection(api, connection, next); } } -}; \ No newline at end of file +};