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
- 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
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