예제 #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")
예제 #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')
예제 #3
0
파일: controllers.py 프로젝트: leom/showoff
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')