Skip to content

Commit

Permalink
Fix filter method name
Browse files Browse the repository at this point in the history
  • Loading branch information
sudan45 committed Nov 25, 2024
1 parent 3890637 commit 9520632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/lead/filter_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ def filter_title(self, qs, name, value):
class LeadPreviewAttachmentGQFilterSet(UserResourceGqlFilterSet):
type = MultipleInputFilter(LeadPreviewAttachmentTypeEnum, field_name='type')
exclude_attachment_ids = IDListFilter(method='filter_exclude_lead_attachment_ids')
exclude_lead_with_no_entries = django_filters.BooleanFilter(method='filter_exclude_with_entries')
exclude_lead_with_no_entries = django_filters.BooleanFilter(method='filter_exclude_lead_with_no_entries')

class Meta:
model = LeadPreviewAttachment
Expand Down

0 comments on commit 9520632

Please sign in to comment.