mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-14 15:52:18 -06:00
- Introduces a new `vpn` app with the following models:
- Tunnel
- TunnelTermination
- IKEProposal
- IKEPolicy
- IPSecProposal
- IPSecPolicy
- IPSecProfile
This commit is contained in:
9
netbox/vpn/apps.py
Normal file
9
netbox/vpn/apps.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class VPNConfig(AppConfig):
|
||||
name = 'vpn'
|
||||
verbose_name = 'VPN'
|
||||
|
||||
def ready(self):
|
||||
from . import search
|
||||
Reference in New Issue
Block a user