* refactor: editor mentions * fix: build errors * fix: build errors * chore: add cycle status to search endpoint response * fix: build errors * fix: dynamic mention content in markdown * chore: update entity search endpoint * style: user mention popover * chore: edition specific mention content handler * chore: show deactivated user for old mentions * chore: update search entity keys * refactor: use editor mention hook
23 lines
589 B
Python
23 lines
589 B
Python
from django.urls import path
|
|
|
|
|
|
from plane.app.views import GlobalSearchEndpoint, IssueSearchEndpoint, SearchEndpoint
|
|
|
|
|
|
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",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/entity-search/",
|
|
SearchEndpoint.as_view(),
|
|
name="entity-search",
|
|
),
|
|
]
|