()
| 19339 | |
| 19340 | @app.route('/api/ghunt/smart-start', methods=['POST']) |
| 19341 | def ghunt_smart_start(): |
| 19342 | denied = require_sensitive_request("ghunt_smart_start", limit=6, window=300) |
| 19343 | if denied: |
| 19344 | return denied |
| 19345 | return jsonify(core.ghunt_smart_start()) |
| 19346 | |
| 19347 | @app.route('/api/ghunt/install', methods=['POST']) |
| 19348 | def ghunt_install(): |
nothing calls this directly
no test coverage detected