Merge pull request #4 from Medality-Health/update-user-on-login
Add property to control user updates on login
This commit is contained in:
commit
43a971c1ef
@ -1 +1 @@
|
||||
__version__ = "1.0.7"
|
||||
__version__ = "1.0.8"
|
||||
|
@ -111,6 +111,9 @@ class WPOpenEdxOAuth2(BaseOAuth2):
|
||||
# list can be delimited with commas, spaces, whatever.
|
||||
SCOPE_SEPARATOR = " "
|
||||
|
||||
# Enable updates on the Django user object on successful WordPress login.
|
||||
UPDATE_USER_ON_LOGIN = True
|
||||
|
||||
# private utility function. not part of psa.
|
||||
def _urlopen(self, url):
|
||||
"""
|
||||
@ -409,6 +412,7 @@ class WPOpenEdxOAuth2(BaseOAuth2):
|
||||
except User.DoesNotExist:
|
||||
return self.user_details
|
||||
|
||||
if self.UPDATE_USER_ON_LOGIN:
|
||||
if (user.is_superuser != self.user_details["is_superuser"]) or (
|
||||
user.is_staff != self.user_details["is_staff"]
|
||||
):
|
||||
@ -420,7 +424,6 @@ class WPOpenEdxOAuth2(BaseOAuth2):
|
||||
username=user.username
|
||||
)
|
||||
)
|
||||
|
||||
if (user.first_name != self.user_details["first_name"]) or (
|
||||
user.last_name != self.user_details["last_name"]
|
||||
):
|
||||
|
Loading…
Reference in New Issue
Block a user