refactor: Move content_tagging django app so that CMS-only tests run (#33259)

This commit is contained in:
Rômulo Penido
2023-09-21 16:01:20 -03:00
committed by GitHub
parent 439a58e56c
commit e45460a2ce
37 changed files with 14 additions and 13 deletions

View File

@@ -1752,7 +1752,7 @@ INSTALLED_APPS = [
# Tagging
'openedx_tagging.core.tagging.apps.TaggingConfig',
'openedx.features.content_tagging',
'openedx.core.djangoapps.content_tagging',
'openedx.features.course_duration_limits',
'openedx.features.content_type_gating',

View File

@@ -339,7 +339,7 @@ urlpatterns += [
# Content tagging
urlpatterns += [
path('api/content_tagging/', include(('openedx.features.content_tagging.urls'))),
path('api/content_tagging/', include(('openedx.core.djangoapps.content_tagging.urls'))),
]
# studio-content-api specific API docs (using drf-spectacular and openapi-v3)