Move contributions to dashboard

This commit is contained in:
Patrick Jentsch
2023-03-14 14:25:05 +01:00
parent 2efc9533ec
commit 4c97929b1b
7 changed files with 48 additions and 50 deletions

View File

@ -0,0 +1,2 @@
from .. import bp
from . import routes

View File

@ -0,0 +1,9 @@
from flask import abort
from flask_login import login_required
from . import bp
@bp.route('/transkribus_htr_pipeline_models')
@login_required
def transkribus_htr_pipeline_models():
return abort(503)