add AppConfig for catalog

ARCHBOM-1105
This commit is contained in:
Robert Raposa
2020-04-11 15:27:31 -04:00
parent 780ad4ed3e
commit 211dcee217
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1 @@
default_app_config = 'openedx.core.djangoapps.catalog.apps.CatalogConfig'

View File

@@ -0,0 +1,9 @@
"""
Configuration for Catalog
"""
from django.apps import AppConfig
class CatalogConfig(AppConfig):
name = 'openedx.core.djangoapps.catalog'
verbose_name = "Catalog"