feat: implement WorkItemNotificationHandler for issue notifications and update imports

This commit is contained in:
pablohashescobar
2025-11-10 22:51:18 +05:30
parent bec90c2eb9
commit d1d6282d23
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
from .base import NotificationContext
from .issue import IssueNotificationHandler
from .workitem import WorkItemNotificationHandler
__all__ = [
"NotificationContext",
"IssueNotificationHandler",
"WorkItemNotificationHandler",
]

View File

@@ -25,7 +25,7 @@ from plane.utils.notifications.base import (
)
class IssueNotificationHandler(BaseNotificationHandler):
class WorkItemNotificationHandler(BaseNotificationHandler):
"""
Notification handler for Issues and Epics.
Handles all issue-related notifications including mentions, assignments, and property changes.