Skip to content

Commit

Permalink
fix(LAB-3415): allow update notif progress without overriding seen state
Browse files Browse the repository at this point in the history
  • Loading branch information
Josselin BUILS committed Jan 21, 2025
1 parent 153acc4 commit ec61ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kili/entrypoints/mutations/notification/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ def create_notification(self, message: str, status: str, url: str, user_id: str)
def update_properties_in_notification(
self,
notification_id: str,
has_been_seen: bool,
status: str,
url: str,
has_been_seen: Optional[bool] = None,
progress: Optional[int] = None,
task_id: Optional[str] = None,
):
Expand Down

0 comments on commit ec61ee0

Please sign in to comment.