Skip to content

Commit

Permalink
library_approved.txt -> registrar_approved.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsetzer committed Nov 20, 2024
1 parent f0eb7c1 commit c1ca1e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions perma_web/perma/views/user_sign_up.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,16 +468,13 @@ def email_library_registrar_request(request: HttpRequest, pending_registrar: Reg

def email_approved_registrar_user(request, user):
"""
Send email to newly approved registrar accounts for folks requesting library accounts
Send email to newly approved registrar accounts for folks requesting accounts
"""
host = request.get_host()
send_user_email(
user.raw_email,
"email/library_approved.txt",
{
"host": host,
"account_route": reverse('user_management_manage_organization')
}
'email/registrar_approved.txt',
{'host': host, 'account_route': reverse('user_management_manage_organization')},
)


Expand Down

0 comments on commit c1ca1e4

Please sign in to comment.