Пример #1
0
def togglePublish(id_document):
    """Toggles the published status of a document."""
    m = DocumentModel()
    status = m.togglePublish(id_document)

    if status==None:
        return jsonify(cons.errors["-4"])
    else:
        return jsonify({"result" : status})