Validate a voice note upload and return normalized MIME.
(file_storage)
| 17295 | mimetype=mime, |
| 17296 | as_attachment=True, |
| 17297 | download_name=filename, |
| 17298 | conditional=True, |
| 17299 | max_age=0, |
| 17300 | ) |
| 17301 | except Exception: |
| 17302 | abort(404) |
| 17303 | |
| 17304 | resp.headers["Cache-Control"] = "no-store" |
| 17305 | return resp |
| 17306 | |
| 17307 | @app.route("/profiler/att/<int:aid>/delete", methods=["POST"]) |
| 17308 | @login_required |
no test coverage detected