mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
9 lines
217 B
Python
9 lines
217 B
Python
from project import app
|
|
from project.models import Image
|
|
|
|
|
|
@app.route("/image/<int:id>")
|
|
def image(id):
|
|
image = Image.query.get_or_404(id)
|
|
return app.response_class(image.data, mimetype=image.encoding_format)
|