19 lines
435 B
Python
19 lines
435 B
Python
# Module improts
|
|
from .base import BaseSerializer
|
|
from plane.db.models import InboxIssue
|
|
|
|
|
|
class InboxIssueSerializer(BaseSerializer):
|
|
class Meta:
|
|
model = InboxIssue
|
|
fields = "__all__"
|
|
read_only_fields = [
|
|
"id",
|
|
"workspace",
|
|
"project",
|
|
"issue",
|
|
"created_by",
|
|
"updated_by",
|
|
"created_at",
|
|
"updated_at",
|
|
]
|