fix: removed print line with user/pass that was used in debugging.
This commit is contained in:
parent
de9438b2a0
commit
3ab162d8b8
1 changed files with 0 additions and 4 deletions
|
|
@ -17,10 +17,6 @@ def signup():
|
||||||
@auth_bp.route('/login', methods=['POST'])
|
@auth_bp.route('/login', methods=['POST'])
|
||||||
def login():
|
def login():
|
||||||
data = request.get_json()
|
data = request.get_json()
|
||||||
username = data.get('username')
|
|
||||||
password = data.get('password')
|
|
||||||
|
|
||||||
print(f"Login attempt: username={username}, password={password}")
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
user = user_service.verify_user(data['username'], data['password'])
|
user = user_service.verify_user(data['username'], data['password'])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue