UPDATE: Removed deprecated routes

This commit is contained in:
JustIceO7
2025-02-01 23:15:21 +00:00
parent 7d11e81581
commit 80609eceff
2 changed files with 0 additions and 21 deletions

View File

@@ -57,15 +57,6 @@ def get_login_status():
username = session.get("username")
return jsonify({'status': username is not None, 'username': username})
@user_bp.route('/authenticate_user')
def authenticate_user() -> dict:
"""
Authenticates the user
"""
return {"authenticated": True}
@user_bp.route('/forgot_password', methods=['POST'])
def user_forgot_password():
"""