Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Eduardo Oliveira
Egor Poderiagin
Emanuele Palazzetti
Federico Dolce
Florian Demmer
Frederico Vieira
Gaël Utard
Hasan Ramezani
Expand Down
5 changes: 2 additions & 3 deletions oauth2_provider/views/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

from .mixins import (
ClientProtectedResourceMixin,
OAuthLibMixin,
ProtectedResourceMixin,
ReadWriteScopedResourceMixin,
ScopedResourceMixin,
)


class ProtectedResourceView(ProtectedResourceMixin, OAuthLibMixin, View):
class ProtectedResourceView(ProtectedResourceMixin, View):
"""
Generic view protecting resources by providing OAuth2 authentication out of the box
"""
Expand All @@ -35,7 +34,7 @@ class ReadWriteScopedResourceView(ReadWriteScopedResourceMixin, ProtectedResourc
pass


class ClientProtectedResourceView(ClientProtectedResourceMixin, OAuthLibMixin, View):
class ClientProtectedResourceView(ClientProtectedResourceMixin, View):

"""View for protecting a resource with client-credentials method.
This involves allowing access tokens, Basic Auth and plain credentials in request body.
Expand Down