providers/oauth2: use self.expires for exp field instead of calculating it again
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
72846f0ae1
commit
84ec70c2a2
|
@ -473,9 +473,7 @@ class RefreshToken(ExpiringModel, BaseGrantModel):
|
||||||
# Convert datetimes into timestamps.
|
# Convert datetimes into timestamps.
|
||||||
now = int(time.time())
|
now = int(time.time())
|
||||||
iat_time = now
|
iat_time = now
|
||||||
exp_time = int(
|
exp_time = int(dateformat.format(self.expires, "U"))
|
||||||
now + timedelta_from_string(self.provider.token_validity).total_seconds()
|
|
||||||
)
|
|
||||||
# We use the timestamp of the user's last successful login (EventAction.LOGIN) for auth_time
|
# We use the timestamp of the user's last successful login (EventAction.LOGIN) for auth_time
|
||||||
auth_events = Event.objects.filter(
|
auth_events = Event.objects.filter(
|
||||||
action=EventAction.LOGIN, user=get_user(user)
|
action=EventAction.LOGIN, user=get_user(user)
|
||||||
|
|
Reference in New Issue