Change api for random password
This commit is contained in:
parent
7a930c20b6
commit
c1fce5bf4a
1 changed files with 2 additions and 2 deletions
|
@ -141,10 +141,10 @@ def protected():
|
||||||
return {'message': f'protected endpoint (allowed user {flask_praetorian.current_user().username})'}
|
return {'message': f'protected endpoint (allowed user {flask_praetorian.current_user().username})'}
|
||||||
|
|
||||||
|
|
||||||
@app.route('/api/protected/rcv_pw', methods=['GET'])
|
@app.route('/api/rcv_pw', methods=['GET'])
|
||||||
def get_password():
|
def get_password():
|
||||||
pw = get_random_password()
|
pw = get_random_password()
|
||||||
ret = {'password': pw}
|
ret = {'random_password': pw}
|
||||||
return ret, 200
|
return ret, 200
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue