Skip to content
Snippets Groups Projects
Commit d21f6418 authored by Julian's avatar Julian
Browse files

Made "flask shell" useful by pushing a request context

parent b77f95f2
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ sys.path.append('deps/ldapalchemy') ...@@ -12,6 +12,7 @@ sys.path.append('deps/ldapalchemy')
# pylint: disable=wrong-import-position # pylint: disable=wrong-import-position
from uffd.database import db, SQLAlchemyJSON from uffd.database import db, SQLAlchemyJSON
from uffd.ldap import ldap
from uffd.template_helper import register_template_helper from uffd.template_helper import register_template_helper
from uffd.navbar import setup_navbar from uffd.navbar import setup_navbar
# pylint: enable=wrong-import-position # pylint: enable=wrong-import-position
...@@ -53,6 +54,11 @@ def create_app(test_config=None): # pylint: disable=too-many-locals ...@@ -53,6 +54,11 @@ def create_app(test_config=None): # pylint: disable=too-many-locals
for i in user.bp + selfservice.bp + role.bp + mail.bp + session.bp + csrf.bp + mfa.bp + oauth2.bp + services.bp + signup.bp + invite.bp: for i in user.bp + selfservice.bp + role.bp + mail.bp + session.bp + csrf.bp + mfa.bp + oauth2.bp + services.bp + signup.bp + invite.bp:
app.register_blueprint(i) app.register_blueprint(i)
@app.shell_context_processor
def push_request_context(): #pylint: disable=unused-variable
app.test_request_context().push() # LDAP ORM requires request context
return {'db': db, 'ldap': ldap}
@app.route("/") @app.route("/")
def index(): #pylint: disable=unused-variable def index(): #pylint: disable=unused-variable
return redirect(url_for('selfservice.index')) return redirect(url_for('selfservice.index'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment