mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
836478c166
* merge branch develop * bugfix, signals for virtualization's class wasn't correctly defined * updated webhooks for 2.4 and cleanup * updated docs to cover changes to supervisor config * review changes and further cleanup * updated redis connection settings * cleanup settings
16 lines
437 B
Python
16 lines
437 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class IPAMConfig(AppConfig):
|
|
name = "ipam"
|
|
verbose_name = "IPAM"
|
|
|
|
def ready(self):
|
|
|
|
# register webhook signals
|
|
from extras.webhooks import register_signals
|
|
from .models import Aggregate, Prefix, IPAddress, VLAN, VRF, VLANGroup, Service
|
|
register_signals([Aggregate, Prefix, IPAddress, VLAN, VRF, VLANGroup, Service])
|