Skip to content

Commit

Permalink
[WEB-522] chore: enabled estimate point analytics for module and cycle (
Browse files Browse the repository at this point in the history
#4763)

* chore: updated modal and form validations

* chore: module estimate analytics

* chore: state analytics

* chore: cycle estimate analytics

* chore: module points serializer

* chore: added fields in serializer

* chore: module state estimate points

* dev: updated module analytics

* dev: updated hover description on the burndown

* dev: UI and module total percentage validation

* chore: estimate points structure change

* chore: module burndown

* chore: key values changed

* chore: cycle progress snapshot

* chore: cycle detail endpoint

* chore: progress snapshot payload change

* chore: resolved merge conflicts

* chore: updated issue and point dropdown in active cycle

* chore: optimized grouped issues count in cycle and module

---------

Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
  • Loading branch information
gurusainath and NarayanBavisetti authored Jun 12, 2024
1 parent 8071350 commit 61d8586
Show file tree
Hide file tree
Showing 26 changed files with 2,367 additions and 852 deletions.
6 changes: 5 additions & 1 deletion apiserver/plane/app/serializers/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,13 @@ class Meta:
class ModuleDetailSerializer(ModuleSerializer):
link_module = ModuleLinkSerializer(read_only=True, many=True)
sub_issues = serializers.IntegerField(read_only=True)
backlog_estimate_points = serializers.IntegerField(read_only=True)
unstarted_estimate_points = serializers.IntegerField(read_only=True)
started_estimate_points = serializers.IntegerField(read_only=True)
cancelled_estimate_points = serializers.IntegerField(read_only=True)

class Meta(ModuleSerializer.Meta):
fields = ModuleSerializer.Meta.fields + ["link_module", "sub_issues"]
fields = ModuleSerializer.Meta.fields + ["link_module", "sub_issues", "backlog_estimate_points", "unstarted_estimate_points", "started_estimate_points", "cancelled_estimate_points"]


class ModuleUserPropertiesSerializer(BaseSerializer):
Expand Down
Loading

0 comments on commit 61d8586

Please sign in to comment.