From b51bf33b1ed41000276eafcc2a0be12a7ece77c2 Mon Sep 17 00:00:00 2001 From: Charles Yao Date: Mon, 24 Nov 2025 00:02:37 -0600 Subject: [PATCH] ECO-171: adding comments for expire_at as clarification --- api/models/tools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/models/tools.py b/api/models/tools.py index 39e3ec100a..2d4dc2fcf5 100644 --- a/api/models/tools.py +++ b/api/models/tools.py @@ -151,6 +151,7 @@ class EndUserAuthenticationProvider(TypeBase): credential_type: Mapped[CredentialType] = mapped_column( String(32), nullable=False, default=CredentialType.API_KEY ) + # Unix timestamp in seconds since epoch (1970-01-01 UTC); -1 indicates no expiration expires_at: Mapped[int] = mapped_column(sa.BigInteger, nullable=False, default=-1) @property