Remove event caching.

That was a horrible kludge and should not be necessary with the
new schema, which is simpler and much faster.
This commit is contained in:
D. Berge
2022-02-27 18:16:20 +01:00
parent 950582a5c6
commit d7d75f34cd
2 changed files with 1 additions and 84 deletions

View File

@@ -136,7 +136,7 @@ app.map({
},
//
'/project/:project/event/': {
get: [ mw.event.cache.get, mw.event.list, mw.event.cache.save ],
get: [ mw.event.list ],
post: [ mw.auth.access.write, mw.event.post ],
put: [ mw.auth.access.write, mw.event.put ],
delete: [ mw.auth.access.write, mw.event.delete ],