-
-
Save parzibyte/21bc097acfa2895afb3cac133528c97e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@app.route('/games', methods=["GET"]) | |
def get_games(): | |
games = game_controller.get_games() | |
return jsonify(games) | |
@app.route("/game", methods=["POST"]) | |
def insert_game(): | |
game_details = request.get_json() | |
name = game_details["name"] | |
price = game_details["price"] | |
rate = game_details["rate"] | |
result = game_controller.insert_game(name, price, rate) | |
return jsonify(result) | |
@app.route("/game", methods=["PUT"]) | |
def update_game(): | |
game_details = request.get_json() | |
id = game_details["id"] | |
name = game_details["name"] | |
price = game_details["price"] | |
rate = game_details["rate"] | |
result = game_controller.update_game(id, name, price, rate) | |
return jsonify(result) | |
@app.route("/game/<id>", methods=["DELETE"]) | |
def delete_game(id): | |
result = game_controller.delete_game(id) | |
return jsonify(result) | |
@app.route("/game/<id>", methods=["GET"]) | |
def get_game_by_id(id): | |
game = game_controller.get_by_id(id) | |
return jsonify(game) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment