feat: per-link path style toggle (bezier / smooth step)

This commit is contained in:
Pouzor
2026-03-07 14:46:55 +01:00
parent 8437f5ef49
commit 07d8c4e58b
8 changed files with 39 additions and 2 deletions
+1
View File
@@ -55,6 +55,7 @@ class Edge(Base):
vlan_id: Mapped[int | None] = mapped_column(Integer)
speed: Mapped[str | None] = mapped_column(String)
custom_color: Mapped[str | None] = mapped_column(String)
path_style: Mapped[str | None] = mapped_column(String)
created_at: Mapped[datetime] = mapped_column(DateTime(timezone=True), default=_now)