Exemplo n.º 1
0
def remove_image_from_show(album, filename):
    """Remove an image from the show"""
    show = Show(album, current_app.config, session)

    try:
        show.remove_image(filename).save()
    except:
        return jsonify(result="Failed")

    return jsonify(result="OK")
Exemplo n.º 2
0
def remove_image_from_show(album, filename):
    """Remove an image from the show"""
    show = Show(album, current_app.config, session)

    try:
        show.remove_image(filename).save()
    except:
        return jsonify(result='Failed')

    return jsonify(result='OK')
Exemplo n.º 3
0
def remove_image_from_show(album, filename):
    """Remove an image from the show"""
    show = Show(album)
    if show.remove_image(filename):
        return jsonify(result='OK')
    return jsonify(result='Failed')