()
| 19355 | |
| 19356 | @app.route('/api/ghunt/status', methods=['POST']) |
| 19357 | def ghunt_status(): |
| 19358 | denied = require_sensitive_request("ghunt_status", limit=30, window=60) |
| 19359 | if denied: |
| 19360 | return denied |
| 19361 | return jsonify(core.ghunt_login_status()) |
| 19362 | |
| 19363 | @app.route('/api/ghunt/login_method2', methods=['POST']) |
| 19364 | def ghunt_login_method2(): |
nothing calls this directly
no test coverage detected