Skip to content

Commit

Permalink
mint complete
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishith25 committed Feb 28, 2025
1 parent 41cb1c0 commit d2a31a3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion care/emr/api/viewsets/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@
class DeviceFilters(filters.FilterSet):
current_encounter = filters.UUIDFilter(field_name="current_encounter__external_id")
current_location = filters.UUIDFilter(field_name="current_location__external_id")
registered_name = filters.CharFilter(field_name="registered_name", lookup_expr="icontains")
registered_name = filters.CharFilter(
field_name="registered_name", lookup_expr="icontains"
)


class DeviceViewSet(EMRModelViewSet):
database_model = Device
Expand Down

0 comments on commit d2a31a3

Please sign in to comment.