mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
14 lines
217 B
Python
14 lines
217 B
Python
from django.db.models import Q
|
|
|
|
|
|
#
|
|
# Secrets
|
|
#
|
|
|
|
SECRET_ASSIGNMENT_MODELS = Q(
|
|
Q(app_label='dcim', model='device') |
|
|
Q(app_label='virtualization', model='virtualmachine')
|
|
)
|
|
|
|
SECRET_PLAINTEXT_MAX_LENGTH = 65535
|