()
| 321 | @api.route("/files/removable-drives", methods=["GET"]) |
| 322 | @restricted_access |
| 323 | def getRemovableDrives(): |
| 324 | return jsonify([d["name"] for d in externalDriveManager().getRemovableDrives()]) |
| 325 | |
| 326 | @api.route("/files/eject", methods=["POST"]) |
| 327 | @restricted_access |
nothing calls this directly
no test coverage detected