Don't cache comparisons in the API

This commit is contained in:
D. Berge
2025-08-19 18:55:31 +02:00
parent c0f9a2de5a
commit b48a060dc0

View File

@@ -365,9 +365,9 @@ app.map({
// FIXME no authentication yet!
'/comparison/group': {
get: [ mw.comparisons.groups.list ],
get: [ mw.etag.noSave, mw.comparisons.groups.list ],
'/:group': {
get: [ mw.comparisons.groups.get ],
get: [ mw.etag.noSave, mw.comparisons.groups.get ],
},
},