* feat: add exporter URL patterns for exporting issues and update session cookie age handling * fix: ensure ADMIN_SESSION_COOKIE_AGE is an integer for consistent session handling
12 lines
No EOL
233 B
Python
12 lines
No EOL
233 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",
|
|
),
|
|
] |