Skip to content

Commit 3ccb763

Browse files
committed
fi
1 parent 1b5b6a6 commit 3ccb763

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

etsd/msgs/filters.py

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class MessageFilter(django_filters.FilterSet):
77
class Meta:
88
model = models.Message
99
fields = {
10+
"id": ["exact"],
1011
"kind": ["exact"],
1112
"category": ["exact"],
1213
"status": ["exact"],
@@ -32,6 +33,7 @@ class ParticipantFilter(django_filters.FilterSet):
3233
class Meta:
3334
model = models.Participant
3435
fields = {
36+
"id": ["exact"],
3537
"status": ["exact"],
3638
"kind": ["exact"],
3739
"message__kind": ["exact"],

0 commit comments

Comments
 (0)