Skip to content
Snippets Groups Projects

Changed minimum links to number of members, added a confirmation page for the...

Merged Neda Moeini requested to merge feature/NAT-535 into develop
All threads resolved!
6 files
+ 54
32
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -55,14 +55,14 @@ class IptrunkInterfaceBlockProvisioning(IptrunkInterfaceBlockInactive, lifecycle
"""An IP trunk interface that is being provisioned."""
interface_name: str
interface_description: str
interface_description: str | None = None
class IptrunkInterfaceBlock(IptrunkInterfaceBlockProvisioning, lifecycle=[SubscriptionLifecycle.ACTIVE]):
"""An active IP trunk interface."""
interface_name: str
interface_description: str
interface_description: str | None = None
class IptrunkSides(UniqueConstrainedList[T_co]): # type: ignore[type-var]
Loading