Skip to content

Commit

Permalink
chore: renamed target date to start date (#1902)
Browse files Browse the repository at this point in the history
  • Loading branch information
NarayanBavisetti authored Aug 18, 2023
1 parent 9316475 commit 02ac4ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apiserver/plane/api/views/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -994,11 +994,11 @@ def get(self, request, slug):

upcoming_issues = Issue.issue_objects.filter(
~Q(state__group__in=["completed", "cancelled"]),
target_date__gte=timezone.now(),
start_date__gte=timezone.now(),
workspace__slug=slug,
assignees__in=[request.user],
completed_at__isnull=True,
).values("id", "name", "workspace__slug", "project_id", "target_date")
).values("id", "name", "workspace__slug", "project_id", "start_date")

return Response(
{
Expand Down

1 comment on commit 02ac4ce

@vercel
Copy link

@vercel vercel bot commented on 02ac4ce Aug 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

plane-dev – ./apps/app

plane-dev-git-develop-plane.vercel.app
plane-dev-plane.vercel.app
plane-dev.vercel.app

Please sign in to comment.