Skip to content

Commit

Permalink
fix: get full name in send activation email
Browse files Browse the repository at this point in the history
  • Loading branch information
vncsna committed Jan 16, 2024
1 parent 413408d commit fcd9aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bd_api/apps/account/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def send_activation_email(account: Account):
content = render_to_string(
"account/activation_email.html",
{
"name": account.full_name,
"name": account.get_full_name(),
"domain": get_frontend_url(),
"uid": uid,
"token": token,
Expand Down

0 comments on commit fcd9aff

Please sign in to comment.