[WEB-1298] chore: project cycle revamp (#4454)

* chore: cycle endpoint changes

* chore: completed cycle icon updated

* chore: project cycle list revamp and code refactor

* chore: cycle page improvement

* chore: added created by in retrieve endopoint

* fix: build error

* chore: cycle list page disclosure button improvement

---------

Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
This commit is contained in:
Anmol Singh Bhatia 2024-05-14 19:22:08 +05:30 committed by GitHub
parent febf19ccc0
commit ab6f1ef780
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 230 additions and 288 deletions

View file

@ -241,6 +241,7 @@ class CycleViewSet(BaseViewSet):
"backlog_issues",
"assignee_ids",
"status",
"created_by"
)
if data:
@ -365,6 +366,7 @@ class CycleViewSet(BaseViewSet):
"backlog_issues",
"assignee_ids",
"status",
"created_by",
)
return Response(data, status=status.HTTP_200_OK)
@ -564,6 +566,7 @@ class CycleViewSet(BaseViewSet):
"backlog_issues",
"assignee_ids",
"status",
"created_by",
)
.first()
)