(
&self,
request: Request<ListSandboxPoliciesRequest>,
)
| 521 | |
| 522 | #[rpc_auth(auth = "bearer", scope = "sandbox:read", role = "user")] |
| 523 | async fn list_sandbox_policies( |
| 524 | &self, |
| 525 | request: Request<ListSandboxPoliciesRequest>, |
| 526 | ) -> Result<Response<ListSandboxPoliciesResponse>, Status> { |
| 527 | policy::handle_list_sandbox_policies(&self.state, request).await |
| 528 | } |
| 529 | |
| 530 | #[rpc_auth(auth = "sandbox")] |
| 531 | async fn report_policy_status( |
no test coverage detected