Phase 6
This commit is contained in:
16
backend/igny8_core/modules/integration/urls.py
Normal file
16
backend/igny8_core/modules/integration/urls.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
Integration URLs
|
||||
Phase 6: Site Integration & Multi-Destination Publishing
|
||||
"""
|
||||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
from igny8_core.modules.integration.views import IntegrationViewSet
|
||||
|
||||
router = DefaultRouter()
|
||||
router.register(r'integrations', IntegrationViewSet, basename='integration')
|
||||
|
||||
urlpatterns = [
|
||||
path('', include(router.urls)),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user