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,2 +1,7 @@
from .. import bp
from flask import Blueprint
bp = Blueprint('results', __name__)
from . import routes

View File

@@ -4,7 +4,7 @@ from app.models import JobResult
from . import bp
@bp.route('/<hashid:job_id>/results/<hashid:job_result_id>/download')
@bp.route('/<hashid:job_result_id>/download')
@login_required
def download_job_result(job_id: int, job_result_id: int):
job_result = JobResult.query.filter_by(