Skip to content

Commit

Permalink
fix: module issue viewset typo (#349)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohashescobar authored Mar 6, 2023
1 parent cee8a6a commit 697e7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apiserver/plane/api/views/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def get_queryset(self):
.distinct()
)

def list(self, request, slug, project_id, cycle_id):
def list(self, request, slug, project_id, module_id):
try:
order_by = request.GET.get("order_by", "issue__created_at")
queryset = self.get_queryset().order_by(order_by)
Expand Down

0 comments on commit 697e7f1

Please sign in to comment.