Exemplo n.º 1
0
def add_college():
    json = request.get_json()
    uni = json['uni']
    college = json['college']
    if University.get_college(uni, college):
        return jsonify({"error": "College already exists"}), 201
    University.add_college(uni, college)
    return jsonify({"message": "OK"}), 201
Exemplo n.º 2
0
def add_college():
    json = request.get_json()
    uni = json['uni']
    college = json['college']
    if University.get_college(uni, college):
        return jsonify({"error": "College already exists"}), 201
    University.add_college(uni, college)
    return jsonify({"message": "OK"}), 201