From c5cbb99bf0ccc1e30625c2c75fd58309d6660910 Mon Sep 17 00:00:00 2001 From: Jorik Jonker Date: Mon, 15 Jan 2024 13:03:26 +0100 Subject: [PATCH] fix: add missing DH group 15 (3072) DH group 15 was not selectable in the UI, and I strongly suspect this patch will fix that, as that particular choices was missing in `choices.py`. Signed-off-by: Jorik Jonker Fixes #14793 --- netbox/vpn/choices.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/vpn/choices.py b/netbox/vpn/choices.py index edbc1fdaf..c4ae67619 100644 --- a/netbox/vpn/choices.py +++ b/netbox/vpn/choices.py @@ -179,6 +179,7 @@ class DHGroupChoices(ChoiceSet): (GROUP_2, _('Group {n}').format(n=2)), (GROUP_5, _('Group {n}').format(n=5)), (GROUP_14, _('Group {n}').format(n=14)), + (GROUP_15, _('Group {n}').format(n=15)), (GROUP_16, _('Group {n}').format(n=16)), (GROUP_17, _('Group {n}').format(n=17)), (GROUP_18, _('Group {n}').format(n=18)),