refactor(auth): remove /api/auth/* handlers to api/auth.py

This commit is contained in:
2025-10-26 15:21:48 +03:00
parent f99c0e8148
commit 532266c98e
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
from flask import Blueprint, request, jsonify
from model.user import User
loginBP = Blueprint("loginapi", __name__)
auth = Blueprint("auth", __name__)
@loginBP.route('/api/auth/login', methods = ['POST'])
@auth.route('/login', methods = ['POST'])
def login():
if request.is_json:
req = request.json