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.
|
# list can be delimited with commas, spaces, whatever.
|
||||||
SCOPE_SEPARATOR = " "
|
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.
|
# private utility function. not part of psa.
|
||||||
def _urlopen(self, url):
|
def _urlopen(self, url):
|
||||||
"""
|
"""
|
||||||
@ -409,6 +412,7 @@ class WPOpenEdxOAuth2(BaseOAuth2):
|
|||||||
except User.DoesNotExist:
|
except User.DoesNotExist:
|
||||||
return self.user_details
|
return self.user_details
|
||||||
|
|
||||||
|
if self.UPDATE_USER_ON_LOGIN:
|
||||||
if (user.is_superuser != self.user_details["is_superuser"]) or (
|
if (user.is_superuser != self.user_details["is_superuser"]) or (
|
||||||
user.is_staff != self.user_details["is_staff"]
|
user.is_staff != self.user_details["is_staff"]
|
||||||
):
|
):
|
||||||
@ -420,7 +424,6 @@ class WPOpenEdxOAuth2(BaseOAuth2):
|
|||||||
username=user.username
|
username=user.username
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if (user.first_name != self.user_details["first_name"]) or (
|
if (user.first_name != self.user_details["first_name"]) or (
|
||||||
user.last_name != self.user_details["last_name"]
|
user.last_name != self.user_details["last_name"]
|
||||||
):
|
):
|
||||||
|
Loading…
Reference in New Issue
Block a user