providers/proxy: fix certificates without key being selectable

This commit is contained in:
Jens Langhammer
2021-02-09 21:01:39 +01:00
parent 02dc112f8f
commit bf754369d9
2 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ class TokenViewSet(ModelViewSet):
if not tokens.exists():
raise Http404
token = tokens.first()
Event.new( # noqa # nosec
EventAction.SECRET_VIEW, secret=token
).from_http(request)
Event.new(EventAction.SECRET_VIEW, secret=token).from_http( # noqa # nosec
request
)
return Response(TokenViewSerializer({"key": token.key}).data)