(
&self,
request: Request<GetGatewayConfigRequest>,
)
| 489 | |
| 490 | #[rpc_auth(auth = "bearer", scope = "config:read", role = "user")] |
| 491 | async fn get_gateway_config( |
| 492 | &self, |
| 493 | request: Request<GetGatewayConfigRequest>, |
| 494 | ) -> Result<Response<GetGatewayConfigResponse>, Status> { |
| 495 | policy::handle_get_gateway_config(&self.state, request).await |
| 496 | } |
| 497 | |
| 498 | #[rpc_auth(auth = "sandbox")] |
| 499 | async fn get_sandbox_provider_environment( |
no test coverage detected