You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment we have checks like {{ request.user.first_name or request.user.email }} has invited you to join xyz! on certain features. This isn't the best habit to be getting into. user first name is acceptable, user email however there may be chances where we leak it without the users action or awareness.
Describe a possible solution
warnings to users when actions will be emailing other people, tell the main user that their details will be shared
provide more placeholders, OR force users to fill out a first_name instead of having fall backs at all
The text was updated successfully, but these errors were encountered:
Apologies for the late reply. Yep that's fine you can work on this. I'd appreciate it if you could update the issue wherever possible as you make progress. Just helps let me know that you're still working on it and if for whatever reason you get stuck or someone else needs to take over they have some more details.
How big is this feature?
Small
Describe the problem
At the moment we have checks like
{{ request.user.first_name or request.user.email }} has invited you to join xyz!
on certain features. This isn't the best habit to be getting into. user first name is acceptable, user email however there may be chances where we leak it without the users action or awareness.Describe a possible solution
The text was updated successfully, but these errors were encountered: