-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix invoke script using dev DB in non-dev #142
Conversation
Issue: Login manager requires app as an argument. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Just needs a couple comment changes :)
Co-authored-by: Matt Fisher <[email protected]>
…into non-dev-db-issue
@@ -81,7 +85,11 @@ def before_request(): | |||
app.register_blueprint(login_bp) | |||
app.register_blueprint(logout_bp) | |||
app.register_blueprint(blueprint, url_prefix="/google_oauth") | |||
app.register_blueprint(response.bp) | |||
app.register_blueprint(bp) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rmarow bp
here is hard to read. What about response_bp
?
I feel obs_bp
and dp_bp
would also be more readable spelling out the words.
No description provided.