(
&self,
request: Request<RevokeSshSessionRequest>,
)
| 349 | |
| 350 | #[rpc_auth(auth = "bearer", scope = "sandbox:write", role = "user")] |
| 351 | async fn revoke_ssh_session( |
| 352 | &self, |
| 353 | request: Request<RevokeSshSessionRequest>, |
| 354 | ) -> Result<Response<RevokeSshSessionResponse>, Status> { |
| 355 | sandbox::handle_revoke_ssh_session(&self.state, request).await |
| 356 | } |
| 357 | |
| 358 | // --- Providers --- |
| 359 |
nothing calls this directly
no test coverage detected