def remove_star(filesystem_id: str) -> werkzeug.Response: make_star_false(filesystem_id) db.session.commit() return redirect(url_for("main.index"))
def remove_star(filesystem_id): make_star_false(filesystem_id) db_session.commit() return redirect(url_for('main.index'))
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