mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
Fix function call
This commit is contained in:
parent
a3c63e3c0f
commit
12928397ac
1 changed files with 2 additions and 2 deletions
|
@ -238,7 +238,7 @@ class UserView(SecureAdminModelView):
|
||||||
|
|
||||||
if hasattr(form, "generate_new_password") and form.generate_new_password.data:
|
if hasattr(form, "generate_new_password") and form.generate_new_password.data:
|
||||||
password = randomPassword()
|
password = randomPassword()
|
||||||
UserView.flashPassword(password)
|
flashRandomPassword(password)
|
||||||
|
|
||||||
admin_change_password(
|
admin_change_password(
|
||||||
model, password, notify=False
|
model, password, notify=False
|
||||||
|
@ -258,7 +258,7 @@ class UserView(SecureAdminModelView):
|
||||||
def after_model_change(self, form, model, is_created):
|
def after_model_change(self, form, model, is_created):
|
||||||
if is_created:
|
if is_created:
|
||||||
flash(
|
flash(
|
||||||
f"{model.email} registered with roles: {', '.join([role.name for role in model.roles])}.",
|
f"{model.email} registered with role(s): {', '.join([role.name for role in model.roles])}.",
|
||||||
category="success",
|
category="success",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue