()
| 19362 | |
| 19363 | @app.route('/api/ghunt/login_method2', methods=['POST']) |
| 19364 | def ghunt_login_method2(): |
| 19365 | denied = require_sensitive_request("ghunt_login_method2", limit=5, window=300) |
| 19366 | if denied: |
| 19367 | return denied |
| 19368 | d = request.get_json(silent=True) or {} |
| 19369 | return jsonify(core.ghunt_login_method2(d.get('cookie_code'))) |
| 19370 | |
| 19371 | @app.route('/api/face/compare', methods=['POST']) |
| 19372 | def face_compare(): |
nothing calls this directly
no test coverage detected