Skip to content

Commit

Permalink
Remove duplicate OAuthLibMixin from base classes
Browse files Browse the repository at this point in the history
  • Loading branch information
fdemmer authored and dopry committed Nov 10, 2023
1 parent e15e245 commit c00d73d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Eduardo Oliveira
Egor Poderiagin
Emanuele Palazzetti
Federico Dolce
Florian Demmer
Frederico Vieira
Hasan Ramezani
Hiroki Kiyohara
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

0 comments on commit c00d73d

Please sign in to comment.