fix log in issue

This commit is contained in:
2025-12-28 05:59:49 +01:00
parent 6b254534f6
commit a9ad5bc2ad
2 changed files with 33 additions and 0 deletions

View File

@@ -8,12 +8,18 @@ import os
import requests
import random
import string
import traceback
def generate_remote_id(length=6):
return ''.join(random.choices(string.digits, k=length))
jobs_bp = Blueprint('jobs', __name__, url_prefix='/jobs')
@jobs_bp.route('/submit')
@login_required
def submit():
return render_template('jobs/submit.html')
@jobs_bp.route('/debug/test-step2')
@login_required
def debug_test_step2():