Set a user's wiki password with auth server

This commit is contained in:
2020-09-16 22:14:27 +00:00
parent 53ae4c31bb
commit 6b841f3a78
3 changed files with 33 additions and 5 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ def set_password():
username = request.form['username']
password = request.form['password']
auth_functions.set_password(username, password)
auth_functions.set_wiki_password(username, password)
return ''
if __name__ == '__main__':