mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-10 02:19:37 -06:00
13 lines
281 B
Python
13 lines
281 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = 'users'
|
|
|
|
def ready(self):
|
|
from netbox.models.features import register_models
|
|
from . import signals # noqa: F401
|
|
|
|
# Register models
|
|
register_models(*self.get_models())
|