summaryrefslogtreecommitdiff
path: root/ick2/projectapi.py
diff options
context:
space:
mode:
Diffstat (limited to 'ick2/projectapi.py')
-rw-r--r--ick2/projectapi.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/ick2/projectapi.py b/ick2/projectapi.py
index 6952d6d..6b6c4fc 100644
--- a/ick2/projectapi.py
+++ b/ick2/projectapi.py
@@ -22,6 +22,12 @@ class ProjectAPI(ick2.ResourceApiBase):
super().__init__('projects', state)
self._pi = ick2.PipelineInstances(self.get_state())
+ def mangle_resource(self, resource):
+ new = dict(resource)
+ if 'next_build_id' not in new:
+ new['next_build_id'] = None
+ return new
+
def get_resource_name(self, resource):
return resource['project']