Esempio n. 1
0
 def remove_star(filesystem_id: str) -> werkzeug.Response:
     make_star_false(filesystem_id)
     db.session.commit()
     return redirect(url_for("main.index"))
Esempio n. 2
0
 def remove_star(filesystem_id):
     make_star_false(filesystem_id)
     db_session.commit()
     return redirect(url_for('main.index'))
Esempio n. 3
0
 def remove_star(source_uuid: str) -> Tuple[flask.Response, int]:
     source = get_or_404(Source, source_uuid, column=Source.uuid)
     utils.make_star_false(source.filesystem_id)
     db.session.commit()
     return jsonify({'message': 'Star removed'}), 200
Esempio n. 4
0
 def remove_star(filesystem_id):
     make_star_false(filesystem_id)
     db_session.commit()
     return redirect(url_for('main.index'))