feat: фаза 3 (часть 1) — disclaimer, очередь, initiator + IP
3.6 UI: убрать stat-minibar и heatmap с дашборда 3.2 AI disclaimer под каждым LLM-вердиктом 3.4 LLM_MAX_CONCURRENT_ANALYSES + Semaphore в llm.py 3.1 Scan.initiator + source_ip, webhook захватывает, UI показывает
This commit is contained in:
@@ -36,6 +36,8 @@ class Scan(Base):
|
||||
)
|
||||
finished_at: Mapped[datetime.datetime | None] = mapped_column(DateTime, nullable=True)
|
||||
error_message: Mapped[str | None] = mapped_column(Text, nullable=True)
|
||||
initiator: Mapped[str | None] = mapped_column(String(255), nullable=True)
|
||||
source_ip: Mapped[str | None] = mapped_column(String(45), nullable=True)
|
||||
|
||||
findings: Mapped[list["Finding"]] = relationship(
|
||||
"Finding", back_populates="scan", cascade="all, delete-orphan"
|
||||
|
||||
Reference in New Issue
Block a user