from django.urls import path from plane.api.views import ( ServiceIssueImportSummaryEndpoint, ImportServiceEndpoint, UpdateServiceImportStatusEndpoint, ) urlpatterns = [ path( "workspaces//importers//", ServiceIssueImportSummaryEndpoint.as_view(), name="importer-summary", ), path( "workspaces//projects/importers//", ImportServiceEndpoint.as_view(), name="importer", ), path( "workspaces//importers/", ImportServiceEndpoint.as_view(), name="importer", ), path( "workspaces//importers///", ImportServiceEndpoint.as_view(), name="importer", ), path( "workspaces//projects//service//importers//", UpdateServiceImportStatusEndpoint.as_view(), name="importer-status", ), ]