19 lines
592 B
Python
19 lines
592 B
Python
from flask import Blueprint, request, jsonify
|
|
import requests
|
|
from app.utils.auth import get_headers
|
|
|
|
auth_bp = Blueprint("auth", __name__)
|
|
|
|
@auth_bp.route("/health", methods=["GET"])
|
|
def health():
|
|
return jsonify({"status": "Up"})
|
|
|
|
@auth_bp.route("/login", methods=["POST"])
|
|
def login():
|
|
data = request.json
|
|
api_url = "https://coreapi.dev.simbrellang.net/api/auth/login"
|
|
|
|
response = requests.post(api_url, json=data)
|
|
if response.status_code == 200:
|
|
return jsonify(response.json()), 200
|
|
return jsonify({"error": "Invalid credentials"}), response.status_code |