added job inputs/results blueprints

This commit is contained in:
Patrick Jentsch
2024-12-12 15:32:56 +01:00
parent 0d1805fb76
commit 6684257bc4
5 changed files with 22 additions and 6 deletions

View File

@ -1,10 +1,10 @@
from flask import abort, send_from_directory
from flask_login import current_user, login_required
from app.models import JobInput
from app.models import JobInput
from . import bp
@bp.route('/<hashid:job_id>/inputs/<hashid:job_input_id>/download')
@bp.route('/<hashid:job_input_id>/download')
@login_required
def download_job_input(job_id: int, job_input_id: int):
job_input = JobInput.query.filter_by(