12 lines
234 B
Python
12 lines
234 B
Python
from django.urls import path
|
|
|
|
from plane.app.views import ExportIssuesEndpoint
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"workspaces/<str:slug>/export-issues/",
|
|
ExportIssuesEndpoint.as_view(),
|
|
name="export-issues",
|
|
),
|
|
]
|