fix(auth): correct local cookie security configuration

This commit is contained in:
Schubert Ferenc 2026-07-11 15:50:15 +02:00
parent b584e60273
commit 155fdbb16a
67 changed files with 1003 additions and 62 deletions

View file

@ -14,6 +14,6 @@ class Contact(Base, UUIDMixin, TimestampMixin):
function: Mapped[str | None] = mapped_column(String(120))
email: Mapped[str | None] = mapped_column(String(255))
phone: Mapped[str | None] = mapped_column(String(80))
notes: Mapped[str | None] = mapped_column(String(500))
customer: Mapped["Customer"] = relationship(back_populates="contacts")