
Security News
/Research
npm Phishing Email Targets Developers with Typosquatted Domain
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
drf-replace-ordering-filter
Advanced tools
Django Rest Framework OrderingFilter backend to replace field name in ordering params.
Django Rest Framework OrderingFilter backend to replace field name in ordering params.
This package is useful if you have custom hidden fields in you model to help with a better ordering.
You can user ReplaceFieldOrderingFilter
as a Default Filter Backend in Rest Framework setting or specifying in a certain APIView.
ReplaceFieldOrderingFilter
works in the same way as rest_framework.filters.OrderingFilter
, if you do not define fields in a View to be replaced.
First of all, add ReplaceFieldOrderingFilter
to DEFAULT_FILTER_BACKENDS in setting.py
file of your Django's project.
REST_FRAMEWORK = {
'DEFAULT_FILTER_BACKENDS': (
'drf_replace_ordering_filter.filters.ReplaceFieldOrderingFilter',
)
}
Lastly, in a view that you want to change some ordering filed to another, add the following attribute.
from rest_framework import views
class MyAPIView(views.APIView):
replace_ordering_fields = {
'field_to_be_replaced': 'new_field'
}
def get(self, request, *args, **kwargs):
pass
The second option is using ReplaceFieldOrderingFilter
only in a specfic view or viewset.
For example:
from drf_replace_ordering_filter.filters import ReplaceFieldOrderingFilter
from rest_framework import views
class MyAPIView(views.APIView):
filter_backends = (ReplaceFieldOrderingFilter,)
replace_ordering_fields = {
'field_to_be_replaced': 'new_field'
}
def get(self, request, *args, **kwargs):
pass
FAQs
Django Rest Framework OrderingFilter backend to replace field name in ordering params.
We found that drf-replace-ordering-filter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
Security News
Knip hits 500 releases with v5.62.0, refining TypeScript config detection and updating plugins as monthly npm downloads approach 12M.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.