Ejemplo n.º 1
0
def get_match(item_id):
    item = get_or_404(storage.get_doc, Match.STORAGE_NAME, item_id)
    return jsonify(item)
Ejemplo n.º 2
0
def get_log(item_id):
    item = get_or_404(storage.get_doc, Match.STORAGE_NAME, item_id)
    return jsonify(log=item['log'])
Ejemplo n.º 3
0
def get_deck(item_id):
    item = get_or_404(storage.get_doc, Deck.STORAGE_NAME, item_id)
    return jsonify(item)
Ejemplo n.º 4
0
def get_player(item_id):
    item = get_or_404(storage.get_doc, Player.STORAGE_NAME, item_id)
    return jsonify(item)
Ejemplo n.º 5
0
def get_card(item_id):
    item = get_or_404(storage.get_doc, Card.STORAGE_NAME, item_id)
    return jsonify(item)
Ejemplo n.º 6
0
def all_matches():
    items = get_or_404(storage.all_docs, Match.STORAGE_NAME)
    return jsonify(items)
Ejemplo n.º 7
0
def all_players():
    items = get_or_404(storage.all_docs, Player.STORAGE_NAME)
    return jsonify(items)
Ejemplo n.º 8
0
def all_decks():
    items = get_or_404(storage.all_docs, Deck.STORAGE_NAME)
    return jsonify(items)
Ejemplo n.º 9
0
def all_cards():
    items = get_or_404(storage.all_docs, Card.STORAGE_NAME)
    return jsonify(items)