Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
michplunkett committed Dec 19, 2024
1 parent 5e00b0b commit fcb3dd7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions OpenOversight/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from flask_migrate import Migrate
from flask_wtf.csrf import CSRFProtect

from OpenOversight.app.api.api import api as api_blueprint
from OpenOversight.app.auth.views import auth as auth_blueprint
from OpenOversight.app.email_client import EmailClient
from OpenOversight.app.filters import instantiate_filters
Expand Down Expand Up @@ -48,6 +49,7 @@ def create_app(config_name="default"):
compress.init_app(app)

# Add Blueprints
app.register_blueprint(api_blueprint)
app.register_blueprint(auth_blueprint)
app.register_blueprint(main_blueprint)

Expand Down

0 comments on commit fcb3dd7

Please sign in to comment.