コード例 #1
0
ファイル: col.py プロジェクト: freedomofpress/securedrop
 def remove_star(filesystem_id: str) -> werkzeug.Response:
     make_star_false(filesystem_id)
     db.session.commit()
     return redirect(url_for("main.index"))
コード例 #2
0
ファイル: col.py プロジェクト: zyphlar/securedrop
 def remove_star(filesystem_id):
     make_star_false(filesystem_id)
     db_session.commit()
     return redirect(url_for('main.index'))
コード例 #3
0
ファイル: api.py プロジェクト: itsibitzi/securedrop
 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
コード例 #4
0
ファイル: col.py プロジェクト: freedomofpress/securedrop
 def remove_star(filesystem_id):
     make_star_false(filesystem_id)
     db_session.commit()
     return redirect(url_for('main.index'))