Skip to content

Instantly share code, notes, and snippets.

@shivanshs9
Created June 7, 2019 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shivanshs9/8775d3e1968fc049f848114ac11d03e2 to your computer and use it in GitHub Desktop.
Save shivanshs9/8775d3e1968fc049f848114ac11d03e2 to your computer and use it in GitHub Desktop.
...
from drf_problems.mixins import AllowPermissionWithExceptionViewMixin
from drf_problems.permissions import MinimumVersionRequiredPermission
class UserDetailView(AllowPermissionWithExceptionViewMixin, generics.RetrieveAPIView):
permission_classes = (
MinimumVersionRequiredPermission('0.8.9'),
)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment