Skip to content

Commit

Permalink
[fix] Added missing "isnull" filter to WiFi Session list API endpoint #…
Browse files Browse the repository at this point in the history
…631

Closes #631
AndyX90 authored Jan 28, 2025
1 parent face815 commit 5d65fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openwisp_monitoring/device/api/filters.py
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ class Meta:
'device': ['exact'],
'device__group': ['exact'],
'start_time': ['exact', 'gt', 'gte', 'lt', 'lte'],
'stop_time': ['exact', 'gt', 'gte', 'lt', 'lte'],
'stop_time': ['exact', 'gt', 'gte', 'lt', 'lte', 'isnull'],
}


0 comments on commit 5d65fdf

Please sign in to comment.