Check in the frontend if the username and password in the survey are correct (fix #179) #185
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})'}
|
||||
|
||||
|
||||
@app.route('/api/protected/rcv_pw', methods=['GET'])
|
||||
@app.route('/api/rcv_pw', methods=['GET'])
|
||||
def get_password():
|
||||
pw = get_random_password()
|
||||
ret = {'password': pw}
|
||||
ret = {'random_password': pw}
|
||||
return ret, 200
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue