3
0
Fork 0

fix: exclude user password from continuum versioning

This commit is contained in:
Lance Edgar 2025-10-29 19:44:42 -05:00
parent e76ced917e
commit 9889167066

View file

@ -181,7 +181,7 @@ class User(Base): # pylint: disable=too-few-public-methods
"""
__tablename__ = "user"
__versioned__ = {}
__versioned__ = {"exclude": ["password"]}
uuid = uuid_column()