mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
19 lines
319 B
Python
19 lines
319 B
Python
from flask import Blueprint
|
|
from flask_login import login_required
|
|
|
|
|
|
bp = Blueprint('jobs', __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, json_routes
|