(self, to, inner_path)
| 544 | self.response(to, {"error": "Content publish failed."}) |
| 545 | |
| 546 | def actionSiteReload(self, to, inner_path): |
| 547 | self.site.content_manager.loadContent(inner_path, add_bad_files=False) |
| 548 | self.site.storage.verifyFiles(quick_check=True) |
| 549 | self.site.updateWebsocket() |
| 550 | return "ok" |
| 551 | |
| 552 | # Write a file to disk |
| 553 | def actionFileWrite(self, to, inner_path, content_base64, ignore_bad_files=False): |
nothing calls this directly
no test coverage detected