about summary refs log tree commit diff
path: root/uploader/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/__init__.py')
-rw-r--r--uploader/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/uploader/__init__.py b/uploader/__init__.py
index 23e66c1..24c45a5 100644
--- a/uploader/__init__.py
+++ b/uploader/__init__.py
@@ -19,6 +19,7 @@ from .species import speciesbp
 from .oauth2.views import oauth2
 from .expression_data import exprdatabp
 from .errors import register_error_handlers
+from .background_jobs import background_jobs_bp
 
 def override_settings_with_envvars(
         app: Flask, ignore: tuple[str, ...]=tuple()) -> None:
@@ -102,6 +103,7 @@ def create_app(config: dict = {}):
     app.register_blueprint(files, url_prefix="/files")
     app.register_blueprint(oauth2, url_prefix="/oauth2")
     app.register_blueprint(speciesbp, url_prefix="/species")
+    app.register_blueprint(background_jobs_bp, url_prefix="/background-jobs/")
 
     register_error_handlers(app)
     gnlibs_jobs.init_app(app)