Fix is_path_endpoint flag on CableTermination

This commit is contained in:
Sander Steffann 2020-06-16 21:56:46 +02:00
parent f075339c5f
commit 3876efe494

View File

@ -300,6 +300,9 @@ class CircuitTermination(CableTermination):
blank=True
)
# Paths do not end on cable terminations, they continue at the other end of the circuit
is_path_endpoint = False
class Meta:
ordering = ['circuit', 'term_side']
unique_together = ['circuit', 'term_side']