feat: my issues filtering (#1666)

* feat: my issues filtering

* dev: migrations

* dev: remove state list endpoint

* dev: state group filtering
This commit is contained in:
Nikhil 2023-07-26 17:52:35 +05:30 committed by GitHub
parent 39274fd5fa
commit fd9dcfa2ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 222 additions and 28 deletions

View file

@ -45,6 +45,7 @@ from plane.api.views import (
UserIssueCompletedGraphEndpoint,
UserWorkspaceDashboardEndpoint,
WorkspaceThemeViewSet,
WorkspaceLabelsEndpoint,
## End Workspaces
# File Assets
FileAssetEndpoint,
@ -385,6 +386,11 @@ urlpatterns = [
),
name="workspace-themes",
),
path(
"workspaces/<str:slug>/labels/",
WorkspaceLabelsEndpoint.as_view(),
name="workspace-labels",
),
## End Workspaces ##
# Projects
path(