mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
24 lines
426 B
Python
24 lines
426 B
Python
from flask import Blueprint
|
|
from flask_login import login_required
|
|
|
|
|
|
bp = Blueprint('contributions', __name__)
|
|
|
|
|
|
@bp.before_request
|
|
@login_required
|
|
def before_request():
|
|
'''
|
|
Ensures that the routes in this package can only be visited by users that
|
|
are logged in.
|
|
'''
|
|
pass
|
|
|
|
|
|
from . import (
|
|
routes,
|
|
spacy_nlp_pipeline_models,
|
|
tesseract_ocr_pipeline_models,
|
|
transkribus_htr_pipeline_models
|
|
)
|