Skip to content

Commit

Permalink
fix(core): Ticket Comment model serializer must inherit from common s…
Browse files Browse the repository at this point in the history
…erializer

ref: #421 #426
  • Loading branch information
jon-nfc committed Dec 19, 2024
1 parent f1fc5f2 commit 1b22313
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/core/serializers/ticket_comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from access.serializers.organization import Organization, OrganizationBaseSerializer
from access.serializers.teams import TeamBaseSerializer

from api.serializers import common
from api.exceptions import UnknownTicketType

from app.serializers.user import UserBaseSerializer
Expand Down Expand Up @@ -50,6 +51,7 @@ class Meta:


class TicketCommentModelSerializer(
common.CommonModelSerializer,
TicketCommentBaseSerializer,
):
"""Base class for Ticket Comment Model
Expand Down

0 comments on commit 1b22313

Please sign in to comment.