Merge branch 'develop' into feature

This commit is contained in:
Jeremy Stretch
2025-01-06 13:42:57 -05:00
16 changed files with 208 additions and 147 deletions

View File

@@ -64,10 +64,12 @@ class IKEPolicySerializer(NetBoxModelSerializer):
class IPSecProposalSerializer(NetBoxModelSerializer):
encryption_algorithm = ChoiceField(
choices=EncryptionAlgorithmChoices
choices=EncryptionAlgorithmChoices,
required=False
)
authentication_algorithm = ChoiceField(
choices=AuthenticationAlgorithmChoices
choices=AuthenticationAlgorithmChoices,
required=False
)
class Meta: