feat: use local profile image by default

This commit is contained in:
Timothy J. Baek 2024-01-26 21:38:33 -08:00
parent 3ce8f3e8fb
commit 0c322063b5
4 changed files with 72 additions and 31 deletions

View file

@ -65,7 +65,7 @@ class UsersTable:
"name": name,
"email": email,
"role": role,
"profile_image_url": get_gravatar_url(email),
"profile_image_url": "/user.png",
"timestamp": int(time.time()),
}
)