(self, request: RegistryServer_pb2.GetProjectRequest, context)
| 1099 | return Empty() |
| 1100 | |
| 1101 | def GetProject(self, request: RegistryServer_pb2.GetProjectRequest, context): |
| 1102 | return assert_permissions( |
| 1103 | self.proxied_registry.get_project( |
| 1104 | name=request.name, |
| 1105 | allow_cache=request.allow_cache, |
| 1106 | ), |
| 1107 | actions=[AuthzedAction.DESCRIBE], |
| 1108 | ).to_proto() |
| 1109 | |
| 1110 | def ListProjects(self, request: RegistryServer_pb2.ListProjectsRequest, context): |
| 1111 | paginated_projects, pagination_metadata = apply_pagination_and_sorting( |
nothing calls this directly
no test coverage detected