fix: draft issue asset conversion to issue#5849
Conversation
WalkthroughThe changes in this pull request involve modifications to the Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
apiserver/plane/app/views/workspace/draft.py (1)
324-331: Good addition of file asset transfer, but consider some improvements.The implementation successfully transfers file assets from the draft issue to the newly created issue. However, there are a few points to consider:
The
entity_typeis set toFileAsset.EntityTypeContext.ISSUE_DESCRIPTIONfor all assets. This might not be accurate if file assets can be associated with other parts of an issue.There's no error handling for the update operation. Consider adding a try-except block to handle potential exceptions.
Consider the following improvements:
- If possible, preserve the original
entity_typeof each file asset:file_assets.update( issue_id=serializer.data.get("id", None), draft_issue_id=None, )
- Add error handling:
try: file_assets.update( issue_id=serializer.data.get("id", None), draft_issue_id=None, ) except Exception as e: # Log the error logger.error(f"Error updating file assets: {str(e)}") # Optionally, you might want to rollback the issue creation or handle this error differently
- If different
entity_typevalues are possible, consider updating them individually:for asset in file_assets: asset.issue_id = serializer.data.get("id", None) asset.draft_issue_id = None # Only update entity_type if necessary if asset.entity_type == FileAsset.EntityTypeContext.DRAFT_ISSUE_DESCRIPTION: asset.entity_type = FileAsset.EntityTypeContext.ISSUE_DESCRIPTION asset.save()This approach allows for more granular control over the
entity_typeupdate.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
- apiserver/plane/app/views/workspace/draft.py (2 hunks)
🧰 Additional context used
🔇 Additional comments (1)
apiserver/plane/app/views/workspace/draft.py (1)
40-40: LGTM: New import added correctly.The
FileAssetimport has been added appropriately to support the new functionality in thecreate_draft_to_issuemethod.
Description
Update asset fields when moving drafts to project issues. Update
entity_typeandissue_idand removedraft_issue_id.Summary by CodeRabbit
New Features
Bug Fixes