From 9889167066d14a1e9e0aeea6d0186df28669f09a Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 29 Oct 2025 19:44:42 -0500 Subject: [PATCH] fix: exclude user password from continuum versioning --- src/wuttjamaican/db/model/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wuttjamaican/db/model/auth.py b/src/wuttjamaican/db/model/auth.py index 580e669..5bb4c45 100644 --- a/src/wuttjamaican/db/model/auth.py +++ b/src/wuttjamaican/db/model/auth.py @@ -181,7 +181,7 @@ class User(Base): # pylint: disable=too-few-public-methods """ __tablename__ = "user" - __versioned__ = {} + __versioned__ = {"exclude": ["password"]} uuid = uuid_column()