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)

View File

@ -18,7 +18,7 @@ class ProxyProviderForm(forms.ModelForm):
)
self.fields["certificate"].queryset = CertificateKeyPair.objects.filter(
key_data__isnull=False
)
).exclude(key_data="")
def save(self, *args, **kwargs):
actual_save = super().save(*args, **kwargs)