예제 #1
0
def add_image_to_show(album, filename):
    """Add an image to the show"""
    show = Show(album, current_app.config, session)
    try:
        show.add_image(filename).save()
    except:
        return jsonify(result="Failed")

    return jsonify(result="OK")
예제 #2
0
def add_image_to_show(album, filename):
    """Add an image to the show"""
    show = Show(album, current_app.config, session)
    try:
        show.add_image(filename).save()
    except:
        return jsonify(result='Failed')

    return jsonify(result='OK')
예제 #3
0
파일: controllers.py 프로젝트: leom/showoff
def add_image_to_show(album, filename):
    """Add an image to the show"""
    show = Show(album)
    if show.add_image(filename):
        return jsonify(result='OK')
    return jsonify(result='Failed')