(
&self,
request: Request<RefreshSandboxTokenRequest>,
)
| 639 | |
| 640 | #[rpc_auth(auth = "sandbox")] |
| 641 | async fn refresh_sandbox_token( |
| 642 | &self, |
| 643 | request: Request<RefreshSandboxTokenRequest>, |
| 644 | ) -> Result<Response<RefreshSandboxTokenResponse>, Status> { |
| 645 | auth_rpc::handle_refresh_sandbox_token(&self.state, request).await |
| 646 | } |
| 647 | |
| 648 | // --- Supervisor session --- |
| 649 |
no test coverage detected