Skip to content

Commit

Permalink
[WEB-2114]: Chore: project cycle optimization (#5430)
Browse files Browse the repository at this point in the history
* chore: project cycle optimization

* fix: typo

* chore: changed the label typo

* feat: intergrated optimized api

* chore: added every key as plural

* fix: productivity dropdown

* fix: removed logging

* fix: handled loading

* fix: loaders

---------

Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
  • Loading branch information
gakshita and NarayanBavisetti authored Aug 27, 2024
1 parent b22bdef commit 716300d
Show file tree
Hide file tree
Showing 12 changed files with 587 additions and 735 deletions.
12 changes: 12 additions & 0 deletions apiserver/plane/app/urls/cycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
CycleIssueViewSet,
CycleDateCheckEndpoint,
CycleFavoriteViewSet,
CycleProgressEndpoint,
CycleAnalyticsEndpoint,
TransferCycleIssueEndpoint,
CycleUserPropertiesEndpoint,
CycleArchiveUnarchiveEndpoint,
Expand Down Expand Up @@ -106,4 +108,14 @@
CycleArchiveUnarchiveEndpoint.as_view(),
name="cycle-archive-unarchive",
),
path(
"workspaces/<str:slug>/projects/<uuid:project_id>/cycles/<uuid:cycle_id>/progress/",
CycleProgressEndpoint.as_view(),
name="project-cycle",
),
path(
"workspaces/<str:slug>/projects/<uuid:project_id>/cycles/<uuid:cycle_id>/analytics/",
CycleAnalyticsEndpoint.as_view(),
name="project-cycle",
),
]
2 changes: 2 additions & 0 deletions apiserver/plane/app/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@
CycleUserPropertiesEndpoint,
CycleViewSet,
TransferCycleIssueEndpoint,
CycleAnalyticsEndpoint,
CycleProgressEndpoint,
)
from .cycle.issue import (
CycleIssueViewSet,
Expand Down
Loading

0 comments on commit 716300d

Please sign in to comment.