mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
Fixes #16780: IKE proposal created via REST API should not require authentication_algorithm
This commit is contained in:
parent
a518579916
commit
7a88810a23
@ -25,7 +25,8 @@ class IKEProposalSerializer(NetBoxModelSerializer):
|
|||||||
choices=EncryptionAlgorithmChoices
|
choices=EncryptionAlgorithmChoices
|
||||||
)
|
)
|
||||||
authentication_algorithm = ChoiceField(
|
authentication_algorithm = ChoiceField(
|
||||||
choices=AuthenticationAlgorithmChoices
|
choices=AuthenticationAlgorithmChoices,
|
||||||
|
required=False
|
||||||
)
|
)
|
||||||
group = ChoiceField(
|
group = ChoiceField(
|
||||||
choices=DHGroupChoices
|
choices=DHGroupChoices
|
||||||
|
Loading…
Reference in New Issue
Block a user