ArturWincenciak / Blef

Card game Bluff

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Expose history of one game

kmorcinek opened this issue · comments

GET /games/{id}

200 OK

{
    "bids": [
        {
            "playerId": "234",
            "bid": "one-of-a-kind:Jack"
        },
        {
            "playerId": "other",
            "bid": "one-of-a-kind:Ace"
        }
    ],
    "checkingPlayerId": "other",
    "looserId": "456"
}

or if not started yet:

{
    "bids": [
    ],
    "checkingPlayerId": null,
    "looserId": null
}