You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(epics): use actual group_id for save/delete operations on nested epics
When an epic belonging to a subgroup is retrieved through a parent
group's epic listing, save() and delete() operations would fail because
they used the parent group's path instead of the epic's actual group_id.
This commit overrides save() and delete() methods in GroupEpic to use
the epic's group_id attribute to construct the correct API path, ensuring
operations work correctly regardless of how the epic was retrieved.
Alao add the ability to pass a custom path using `_pg_custom_path` to
the `UpdateMixin.update()` and `SaveMixin.save()` methods. This allowed
the override of the `update()` method to re-use the `SaveMixin.save()`
method.
This commit was created with the assistance of AI
Closes: #3261
0 commit comments