(filename)
| 331 | @api.route("/files/local-file-exists/<string:filename>", methods=["GET"]) |
| 332 | @restricted_access |
| 333 | def localFileExists(filename): |
| 334 | return jsonify({'response': externalDriveManager().localFileExists(filename)}) |
| 335 | |
| 336 | @api.route("/files/copy-to-local", methods=["POST"]) |
| 337 | @restricted_access |
nothing calls this directly
no test coverage detected