(
&self,
request: Request<ListProviderProfilesRequest>,
)
| 383 | |
| 384 | #[rpc_auth(auth = "bearer", scope = "provider:read", role = "user")] |
| 385 | async fn list_provider_profiles( |
| 386 | &self, |
| 387 | request: Request<ListProviderProfilesRequest>, |
| 388 | ) -> Result<Response<ListProviderProfilesResponse>, Status> { |
| 389 | provider::handle_list_provider_profiles(&self.state, request).await |
| 390 | } |
| 391 | |
| 392 | #[rpc_auth(auth = "bearer", scope = "provider:read", role = "user")] |
| 393 | async fn get_provider_profile( |
no test coverage detected