Update the flash message for when a new application member is added.

This commit is contained in:
dandds
2019-09-19 09:34:00 -04:00
parent 60a5bb8c19
commit 7bb9400ea7
3 changed files with 7 additions and 3 deletions

View File

@@ -300,7 +300,11 @@ def create_member(application_id):
token=invite.token,
)
flash("new_application_member", user_name=invite.user_name)
flash(
"new_application_member",
user_name=invite.user_name,
application_name=application.name,
)
except AlreadyExistsError:
return render_template(