1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#9816: Promote IKE & IPSec proposals and policies to primary models

This commit is contained in:
Jeremy Stretch
2023-12-04 09:19:56 -05:00
parent 3faf4857cb
commit 5b0b366b82
13 changed files with 65 additions and 52 deletions

View File

@@ -20,6 +20,7 @@ class IKEProposalIndex(SearchIndex):
fields = (
('name', 100),
('description', 500),
('comments', 5000),
)
display_attrs = ('description',)
@@ -30,6 +31,7 @@ class IKEPolicyIndex(SearchIndex):
fields = (
('name', 100),
('description', 500),
('comments', 5000),
)
display_attrs = ('description',)
@@ -40,6 +42,7 @@ class IPSecProposalIndex(SearchIndex):
fields = (
('name', 100),
('description', 500),
('comments', 5000),
)
display_attrs = ('description',)
@@ -50,6 +53,7 @@ class IPSecPolicyIndex(SearchIndex):
fields = (
('name', 100),
('description', 500),
('comments', 5000),
)
display_attrs = ('description',)