Merge pull request #23696 from edx/robrap/ARCHBOM-1105-fix-migrations

add AppConfig for catalog
This commit is contained in:
Robert Raposa
2020-04-13 09:55:31 -04:00
committed by GitHub
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"