MCPcopy Create free account
hub / github.com/CScorza/IntelOSINT / api_social_watch_status

Function api_social_watch_status

IntelOSINT.py:21860–21865  ·  view source on GitHub ↗
(watch_id)

Source from the content-addressed store, hash-verified

21858
21859@app.route('/api/social/watch/<watch_id>', methods=['GET'])
21860def api_social_watch_status(watch_id):
21861 with SOCIAL_WATCHES_LOCK:
21862 watch = SOCIAL_WATCHES.get(watch_id)
21863 if not watch:
21864 return jsonify({"error": "watch non trovato"}), 404
21865 return jsonify(watch)
21866
21867@app.route('/api/social/watch/<watch_id>', methods=['DELETE'])
21868def api_social_watch_stop(watch_id):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected