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:
@@ -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',)
|
||||
|
||||
|
Reference in New Issue
Block a user