()
| 35 | @api.route("/camera/is-resolution-supported", methods=["GET"]) |
| 36 | @restricted_access |
| 37 | def isResolutionSupported(): |
| 38 | cm = cameraManager() |
| 39 | size = request.values['size'] |
| 40 | |
| 41 | return jsonify({"isResolutionSupported": cm.isResolutionSupported(size)}) |
| 42 | |
| 43 | |
| 44 | @api.route("/camera/connected", methods=["GET"]) |
nothing calls this directly
no test coverage detected