(path: str)
| 8 | class PluginPageAuth: |
| 9 | @staticmethod |
| 10 | def is_protected_path(path: str) -> bool: |
| 11 | return path.startswith(PLUGIN_PAGE_CONTENT_PREFIX) or path.startswith( |
| 12 | PLUGIN_PAGE_BRIDGE_PATH |
| 13 | ) |
| 14 | |
| 15 | @staticmethod |
| 16 | def is_asset_token(payload: dict) -> bool: |
no test coverage detected