Don't cache comparisons in the API

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

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 ],
},
},