(
&self,
request: Request<ListSandboxesRequest>,
)
| 234 | |
| 235 | #[rpc_auth(auth = "bearer", scope = "sandbox:read", role = "user")] |
| 236 | async fn list_sandboxes( |
| 237 | &self, |
| 238 | request: Request<ListSandboxesRequest>, |
| 239 | ) -> Result<Response<ListSandboxesResponse>, Status> { |
| 240 | sandbox::handle_list_sandboxes(&self.state, request).await |
| 241 | } |
| 242 | |
| 243 | #[rpc_auth(auth = "bearer", scope = "sandbox:read", role = "user")] |
| 244 | async fn list_sandbox_providers( |
nothing calls this directly
no test coverage detected