Skip to content

Commit

Permalink
fix: remove the troubled URL from swagger schema
Browse files Browse the repository at this point in the history
  • Loading branch information
schenedx committed Jan 29, 2025
1 parent 7038104 commit 434db46
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions openedx/core/djangoapps/content_tagging/rest_api/v1/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

from django.urls.conf import include, path
from drf_yasg.utils import swagger_auto_schema
from openedx_tagging.core.tagging.rest_api.v1 import views as oel_tagging_views
from openedx_tagging.core.tagging.rest_api.v1 import views_import as oel_tagging_views_import
from openedx_tagging.core.tagging.rest_api.v1.views import ObjectTagCountsView
Expand All @@ -14,6 +15,7 @@
router.register("taxonomies", views.TaxonomyOrgView, basename="taxonomy")
router.register("object_tags", views.ObjectTagOrgView, basename="object_tag")
router.register("object_tag_counts", ObjectTagCountsView, basename="object_tag_counts")
swagger_auto_schema(auto_schema=None)(ObjectTagCountsView)

urlpatterns = [
path(
Expand Down

0 comments on commit 434db46

Please sign in to comment.