providers/oauth2: fix query using user model not dict

This commit is contained in:
Jens Langhammer 2020-12-26 18:20:34 +01:00
parent 8dddcf891e
commit e5e1e3737d
1 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ from rest_framework.serializers import Serializer
from authentik.core.models import ExpiringModel, PropertyMapping, Provider, User
from authentik.crypto.models import CertificateKeyPair
from authentik.events.models import Event, EventAction
from authentik.events.utils import get_user
from authentik.lib.utils.template import render_to_string
from authentik.lib.utils.time import timedelta_from_string, timedelta_string_validator
from authentik.providers.oauth2.apps import AuthentikProviderOAuth2Config
@ -486,7 +487,7 @@ class RefreshToken(ExpiringModel, BaseGrantModel):
# Because this function is called after the AUTHORIZE_APPLICATION Event has been created,
# we use the timestamp of that.
auth_event = Event.objects.filter(
action=EventAction.AUTHORIZE_APPLICATION, user=user
action=EventAction.AUTHORIZE_APPLICATION, user=get_user(user)
).latest("created")
auth_time = int(dateformat.format(auth_event.created, "U"))