mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Define is_path_endpoint
and is_connected_endpoint
separately, as a CableTermination is a possible connected endpoint but not always the end of the path.
This commit is contained in:
@@ -86,8 +86,12 @@ class CableTermination(models.Model):
|
||||
object_id_field='termination_b_id'
|
||||
)
|
||||
|
||||
# Whether this class is always an endpoint for cable traces
|
||||
is_path_endpoint = True
|
||||
|
||||
# Whether this class can be a connected endpoint
|
||||
is_connected_endpoint = True
|
||||
|
||||
class Meta:
|
||||
abstract = True
|
||||
|
||||
@@ -895,8 +899,13 @@ class FrontPort(CableTermination, ComponentModel):
|
||||
tags = TaggableManager(through=TaggedItem)
|
||||
|
||||
csv_headers = ['device', 'name', 'type', 'rear_port', 'rear_port_position', 'description']
|
||||
|
||||
# Whether this class is always an endpoint for cable traces
|
||||
is_path_endpoint = False
|
||||
|
||||
# Whether this class can be a connected endpoint
|
||||
is_connected_endpoint = False
|
||||
|
||||
class Meta:
|
||||
ordering = ('device', '_name')
|
||||
unique_together = (
|
||||
@@ -963,8 +972,13 @@ class RearPort(CableTermination, ComponentModel):
|
||||
tags = TaggableManager(through=TaggedItem)
|
||||
|
||||
csv_headers = ['device', 'name', 'type', 'positions', 'description']
|
||||
|
||||
# Whether this class is always an endpoint for cable traces
|
||||
is_path_endpoint = False
|
||||
|
||||
# Whether this class can be a connected endpoint
|
||||
is_connected_endpoint = False
|
||||
|
||||
class Meta:
|
||||
ordering = ('device', '_name')
|
||||
unique_together = ('device', 'name')
|
||||
|
Reference in New Issue
Block a user