forked from github/plane
* dev: update webhook logic for issues * dev: update issue webhooks for cycle and module * dev: webhook for comment * dev: issue attachment webhooks * dev: add logging * dev: add inbox issue webhooks * dev: update the webhook send task * dev: project webhooks for api * dev: webhooks update for projects, cycles and modules * dev: fix webhook on cycle and module create from external apis
24 lines
551 B
Python
24 lines
551 B
Python
# Module improts
|
|
from .base import BaseSerializer
|
|
from .issue import IssueExpandSerializer
|
|
from plane.db.models import InboxIssue
|
|
|
|
|
|
class InboxIssueSerializer(BaseSerializer):
|
|
|
|
issue_detail = IssueExpandSerializer(read_only=True, source="issue")
|
|
|
|
class Meta:
|
|
model = InboxIssue
|
|
fields = "__all__"
|
|
read_only_fields = [
|
|
"id",
|
|
"workspace",
|
|
"project",
|
|
"issue",
|
|
"created_by",
|
|
"updated_by",
|
|
"created_at",
|
|
"updated_at",
|
|
]
|