()
| 28 | @api.route("/camera/has-properties", methods=["GET"]) |
| 29 | @restricted_access |
| 30 | def hasCameraProperties(): |
| 31 | cm = cameraManager() |
| 32 | |
| 33 | return jsonify({"hasCameraProperties": cm.hasCameraProperties()}) |
| 34 | |
| 35 | @api.route("/camera/is-resolution-supported", methods=["GET"]) |
| 36 | @restricted_access |
nothing calls this directly
no test coverage detected