Exemplo n.º 1
0
def join(request, gameId):
    # this is the nice restful interface
    if Game.tryToJoin(request.user, gameId):
        # @TODO: go directly to game if we're playing as X
        return redirect(reverse(games))
    else:
        return redirect(reverse(joinable))