From 211dcee2178cf9749b716b659ff5c5274f26bc02 Mon Sep 17 00:00:00 2001 From: Robert Raposa Date: Sat, 11 Apr 2020 15:27:31 -0400 Subject: [PATCH] add AppConfig for catalog ARCHBOM-1105 --- openedx/core/djangoapps/catalog/__init__.py | 1 + openedx/core/djangoapps/catalog/apps.py | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 openedx/core/djangoapps/catalog/apps.py diff --git a/openedx/core/djangoapps/catalog/__init__.py b/openedx/core/djangoapps/catalog/__init__.py index e69de29bb2..94f0a53f55 100644 --- a/openedx/core/djangoapps/catalog/__init__.py +++ b/openedx/core/djangoapps/catalog/__init__.py @@ -0,0 +1 @@ +default_app_config = 'openedx.core.djangoapps.catalog.apps.CatalogConfig' diff --git a/openedx/core/djangoapps/catalog/apps.py b/openedx/core/djangoapps/catalog/apps.py new file mode 100644 index 0000000000..0cf6e10d64 --- /dev/null +++ b/openedx/core/djangoapps/catalog/apps.py @@ -0,0 +1,9 @@ +""" +Configuration for Catalog +""" +from django.apps import AppConfig + + +class CatalogConfig(AppConfig): + name = 'openedx.core.djangoapps.catalog' + verbose_name = "Catalog"