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