mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
13 lines
456 B
Python
13 lines
456 B
Python
from flask import g, url_for
|
|
from flask_breadcrumbs import register_breadcrumb
|
|
from flask_login import current_user
|
|
from app.users.settings.routes import settings as settings_route
|
|
from . import bp
|
|
|
|
|
|
@bp.route('/settings', methods=['GET', 'POST'])
|
|
@register_breadcrumb(bp, '.', '<i class="material-icons left">settings</i>Settings')
|
|
def settings():
|
|
g._nopaque_redirect_location_on_post = url_for('.settings')
|
|
return settings_route(current_user.id)
|