From 23d0ce195e14cc6243b4362678375744275b8c63 Mon Sep 17 00:00:00 2001 From: Zara Date: Wed, 30 Mar 2016 13:50:03 +0000 Subject: [PATCH] Add repo_url and team_id Adding these for completeness. I think repo_url is actually deprecated, so we may not want this. There are plans to use project teams at some point, though. Change-Id: I0f57f2c530e414783358b2d5ed265a22ad5628ea --- storyboardclient/v1/projects.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/storyboardclient/v1/projects.py b/storyboardclient/v1/projects.py index 7bb0fd3..a048fc3 100644 --- a/storyboardclient/v1/projects.py +++ b/storyboardclient/v1/projects.py @@ -21,8 +21,10 @@ class Project(base.BaseObject): description = None is_active = None autocreate_branches = None + repo_url = None + team_id = None class ProjectsManager(base.BaseManager): url_key = "projects" - resource_class = Project \ No newline at end of file + resource_class = Project