mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* Clean up base modules * Clean up forms modules * Clean up templatetags modules * Replace custom simplify_decimal filter with floatformat * Misc cleanup * Merge ReturnURLForm into ConfirmationForm * Clean up import statements for utilities.forms * Fix field class references in docs
19 lines
609 B
Python
19 lines
609 B
Python
# Prefix for nested serializers
|
|
NESTED_SERIALIZER_PREFIX = 'Nested'
|
|
|
|
# RQ queue names
|
|
RQ_QUEUE_DEFAULT = 'default'
|
|
RQ_QUEUE_HIGH = 'high'
|
|
RQ_QUEUE_LOW = 'low'
|
|
|
|
# Keys for PostgreSQL advisory locks. These are arbitrary bigints used by the advisory_lock
|
|
# context manager. When a lock is acquired, one of these keys will be used to identify said lock.
|
|
# When adding a new key, pick something arbitrary and unique so that it is easily searchable in
|
|
# query logs.
|
|
ADVISORY_LOCK_KEYS = {
|
|
'available-prefixes': 100100,
|
|
'available-ips': 100200,
|
|
'available-vlans': 100300,
|
|
'available-asns': 100400,
|
|
}
|