()
| 333 | |
| 334 | @bp.route("/clean", methods=["POST"]) |
| 335 | def trigger_clean(): |
| 336 | builder = current_app.lektor_info.get_builder() |
| 337 | builder.prune(all=True) |
| 338 | builder.touch_site_config() |
| 339 | return jsonify(okay=True) |
| 340 | |
| 341 | |
| 342 | @bp.route("/publish") |
nothing calls this directly
no test coverage detected