mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-26 03:23:59 +03:00
support args on get_object_or_404
This commit is contained in:
parent
afc9e9e038
commit
3e94f4dc70
|
@ -25,13 +25,13 @@ def strict_positive_int(integer_string, cutoff=None):
|
||||||
ret = min(ret, cutoff)
|
ret = min(ret, cutoff)
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
def get_object_or_404(queryset, **filter_kwargs):
|
def get_object_or_404(queryset, *filter_args, **filter_kwargs):
|
||||||
"""
|
"""
|
||||||
Same as Django's standard shortcut, but make sure to raise 404
|
Same as Django's standard shortcut, but make sure to raise 404
|
||||||
if the filter_kwargs don't match the required types.
|
if the filter_kwargs don't match the required types.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
return _get_object_or_404(queryset, **filter_kwargs)
|
return _get_object_or_404(queryset, *filter_args, **filter_kwargs)
|
||||||
except (TypeError, ValueError):
|
except (TypeError, ValueError):
|
||||||
raise Http404
|
raise Http404
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user