()
| 897 | # Update site content.json |
| 898 | def actionSiteUpdate(self, to, address, check_files=False, since=None, announce=False): |
| 899 | def updateThread(): |
| 900 | site.update(announce=announce, check_files=check_files, since=since) |
| 901 | self.response(to, "Updated") |
| 902 | |
| 903 | site = self.server.sites.get(address) |
| 904 | if site and (site.address == self.site.address or "ADMIN" in self.site.settings["permissions"]): |