(self, request, context)
| 1215 | ) |
| 1216 | |
| 1217 | def Commit(self, request, context): |
| 1218 | for project in self.proxied_registry.list_projects(allow_cache=True): |
| 1219 | assert_permissions(resource=project, actions=[AuthzedAction.UPDATE]) |
| 1220 | self.proxied_registry.commit() |
| 1221 | return Empty() |
| 1222 | |
| 1223 | def Refresh(self, request, context): |
| 1224 | project = self.proxied_registry.get_project( |
nothing calls this directly
no test coverage detected