(
plugin_path: str,
request: Request,
auth: AuthContext = Depends(require_plugin_scope),
)
| 404 | |
| 405 | @router.patch("/plugins/extensions/{plugin_path:path}") |
| 406 | async def patch_plugin_extension_route( |
| 407 | plugin_path: str, |
| 408 | request: Request, |
| 409 | auth: AuthContext = Depends(require_plugin_scope), |
| 410 | ): |
| 411 | return await _call_plugin_extension(plugin_path, request, auth.username) |
| 412 | |
| 413 | |
| 414 | @router.delete("/plugins/extensions/{plugin_path:path}") |
nothing calls this directly
no test coverage detected