mirror of https://github.com/zulip/zulip.git
zerver: Remove dead code from do_change_password.
This commit is contained in:
parent
9d07faaf0c
commit
e731aeda44
|
@ -2689,13 +2689,8 @@ def do_change_subscription_property(user_profile: UserProfile, sub: Subscription
|
|||
name=stream.name)
|
||||
send_event(event, [user_profile.id])
|
||||
|
||||
def do_change_password(user_profile: UserProfile, password: str, commit: bool=True,
|
||||
hashed_password: bool=False) -> None:
|
||||
if hashed_password:
|
||||
# This is a hashed password, not the password itself.
|
||||
user_profile.set_password(password)
|
||||
else:
|
||||
user_profile.set_password(password)
|
||||
def do_change_password(user_profile: UserProfile, password: str, commit: bool=True) -> None:
|
||||
user_profile.set_password(password)
|
||||
if commit:
|
||||
user_profile.save(update_fields=["password"])
|
||||
event_time = timezone_now()
|
||||
|
|
Loading…
Reference in New Issue