Serve broken images

This commit is contained in:
hlohaus
2025-06-19 13:47:20 +02:00
parent 4485758781
commit a323981e72
2 changed files with 8 additions and 1 deletions

View File

@@ -226,6 +226,10 @@ class Backend_Api(Api):
'/thumbnail/<path:name>': {
'function': self.serve_images,
'methods': ['GET']
},
'/http<path:name>': {
'function': self.serve_broken_images,
'methods': ['GET']
}
}