(self, url_path, file_path)
| 1697 | return no_update |
| 1698 | |
| 1699 | def _add_assets_resource(self, url_path, file_path): |
| 1700 | res = {"asset_path": url_path, "filepath": file_path} |
| 1701 | if self.config.assets_external_path: |
| 1702 | res["external_url"] = self.get_asset_url(url_path.lstrip("/")) |
| 1703 | self._assets_files.append(file_path) |
| 1704 | return res |
| 1705 | |
| 1706 | def _walk_assets_directory(self): |
| 1707 | walk_dir = self.config.assets_folder |
no test coverage detected