mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
22 lines
430 B
Python
22 lines
430 B
Python
from django.urls import path
|
|
|
|
|
|
from plane.app.views import (
|
|
GlobalSearchEndpoint,
|
|
IssueSearchEndpoint,
|
|
)
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"workspaces/<str:slug>/search/",
|
|
GlobalSearchEndpoint.as_view(),
|
|
name="global-search",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/search-issues/",
|
|
IssueSearchEndpoint.as_view(),
|
|
name="project-issue-search",
|
|
),
|
|
]
|