We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7252db7 commit 0b74f95Copy full SHA for 0b74f95
apps/__init__.py
@@ -34,11 +34,15 @@ def initialize_database():
34
def shutdown_session(exception=None):
35
db.session.remove()
36
37
+from apps.authentication.oauth import github_blueprint
38
39
def create_app(config):
40
app = Flask(__name__)
41
app.config.from_object(config)
42
register_extensions(app)
43
register_blueprints(app)
44
+
45
+ app.register_blueprint(github_blueprint, url_prefix="/login")
46
47
configure_database(app)
48
return app
0 commit comments