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

fix cache for get endpoints #491

Merged
merged 1 commit into from
Oct 17, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions actions/admins.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 1 addition & 0 deletions actions/copilots.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
3 changes: 2 additions & 1 deletion actions/reviewers.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -326,4 +327,4 @@ exports.removeReviewer = {
api.helper.handleNoConnection(api, connection, next);
}
}
};
};