Skip to content

Commit

Permalink
fixes #68
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Mar 23, 2023
1 parent 4d3cbef commit b51bc2e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ceurws/volumebrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,16 @@ async def volumes():
volumeList=self.wdSync.vm.getList()
return volumeList

@jp.app.get("/proceedings.json")
async def proceedings():
"""
direct fastapi return of proceedings
"""
if self.wdSync is None:
self.wdSync=WikidataSync(debug=self.debug)
proceedingsList=self.wdSync.loadProceedingsFromCache()
return proceedingsList

@jp.app.get("/papers.json")
async def papers():
"""
Expand Down

0 comments on commit b51bc2e

Please sign in to comment.