File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1184,13 +1184,15 @@ class ProjectRegistryRepository(ObjectDeleteMixin, RESTObject):
11841184
11851185
11861186class ProjectRegistryRepositoryManager (DeleteMixin , ListMixin , RESTManager ):
1187- _path = '/projects/%(project_id)s/registry/repositories'
1187+ _path = '/projects/%(project_id)s/registry/repositories'
11881188 _obj_cls = ProjectRegistryRepository
11891189 _from_parent_attrs = {'project_id' : 'id' }
11901190
1191+
11911192class ProjectRegistryTag (ObjectDeleteMixin , RESTObject ):
11921193 _id_attr = 'name'
11931194
1195+
11941196class ProjectRegistryTagManager (DeleteMixin , RetrieveMixin , RESTManager ):
11951197 _obj_cls = ProjectRegistryTag
11961198 _from_parent_attrs = {'project_id' : 'project_id' , 'repository_id' : 'id' }
You can’t perform that action at this time.
0 commit comments