(watch_id)
| 21858 | |
| 21859 | @app.route('/api/social/watch/<watch_id>', methods=['GET']) |
| 21860 | def 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']) |
| 21868 | def api_social_watch_stop(watch_id): |
nothing calls this directly
no outgoing calls
no test coverage detected