Skip to content

Commit 90ebf4a

Browse files
committed
Do not return password_hash when serializing User
1 parent be2e9ed commit 90ebf4a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

custom_components/reflex_local_auth/user.py

+7
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,10 @@ def verify(self, secret: str) -> bool:
4242
password=secret.encode("utf-8"),
4343
hashed_password=self.password_hash,
4444
)
45+
46+
def dict(self, *args, **kwargs) -> dict:
47+
"""Return a dictionary representation of the user."""
48+
d = super().dict(*args, **kwargs)
49+
# Never return the hash when serializing to the frontend.
50+
d.pop("password_hash", None)
51+
return d

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "reflex-local-auth"
10-
version = "0.0.1"
10+
version = "0.0.2"
1111
description = "Reflex custom component local-auth"
1212
readme = "README.md"
1313
license = { text = "Apache-2.0" }

0 commit comments

Comments
 (0)