2019-07-19 11:28:17 +00:00
|
|
|
from flask import Blueprint
|
2023-04-11 10:39:37 +00:00
|
|
|
from flask_login import login_required
|
2024-03-07 14:49:04 +00:00
|
|
|
from pathlib import Path
|
2022-02-03 11:39:16 +00:00
|
|
|
import yaml
|
2019-07-19 11:28:17 +00:00
|
|
|
|
|
|
|
|
2024-03-07 14:49:04 +00:00
|
|
|
services_file = Path(__file__).parent / 'services.yml'
|
|
|
|
with services_file.open('r') as f:
|
2022-02-03 11:39:16 +00:00
|
|
|
SERVICES = yaml.safe_load(f)
|
2021-02-19 12:00:52 +00:00
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
bp = Blueprint('services', __name__)
|
2023-04-11 09:46:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
@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
|
|
|
|
|
|
|
|
|
2022-02-03 11:39:16 +00:00
|
|
|
from . import routes # noqa
|