user settings page

This commit is contained in:
Inga Kirschnick
2022-11-29 16:46:33 +01:00
parent f8d4b601f7
commit 102772d1a7
8 changed files with 209 additions and 48 deletions

View File

@ -77,6 +77,9 @@ def create_app(config: Config = Config) -> Flask:
from .main import bp as main_blueprint
app.register_blueprint(main_blueprint, url_prefix='/')
from .profile import bp as profile_blueprint
app.register_blueprint(profile_blueprint, url_prefix='/profile')
from .services import bp as services_blueprint
app.register_blueprint(services_blueprint, url_prefix='/services')