()
| 19332 | |
| 19333 | @app.route('/api/ghunt/login', methods=['POST']) |
| 19334 | def ghunt_login(): |
| 19335 | denied = require_sensitive_request("ghunt_login", limit=5, window=300) |
| 19336 | if denied: |
| 19337 | return denied |
| 19338 | return jsonify(core.ghunt_login_launch()) |
| 19339 | |
| 19340 | @app.route('/api/ghunt/smart-start', methods=['POST']) |
| 19341 | def ghunt_smart_start(): |
nothing calls this directly
no test coverage detected