()
| 326 | @api.route("/files/eject", methods=["POST"]) |
| 327 | @restricted_access |
| 328 | def eject(): |
| 329 | return jsonify(externalDriveManager().eject(request.values.get('drive'))) |
| 330 | |
| 331 | @api.route("/files/local-file-exists/<string:filename>", methods=["GET"]) |
| 332 | @restricted_access |
nothing calls this directly
no test coverage detected