From 4b922b52a6785898ef61098490046cf1bc19e786 Mon Sep 17 00:00:00 2001 From: Zara Date: Tue, 26 Jul 2016 15:18:57 +0000 Subject: [PATCH] Add support for private stories This lets the python client return a story's 'private' setting, which will be True or False. Change-Id: I9625064a111d8fa0e53cd5b9ea5ed30ba37b3eec --- storyboardclient/v1/stories.py | 1 + 1 file changed, 1 insertion(+) diff --git a/storyboardclient/v1/stories.py b/storyboardclient/v1/stories.py index 86aa666..4b06004 100644 --- a/storyboardclient/v1/stories.py +++ b/storyboardclient/v1/stories.py @@ -27,6 +27,7 @@ class Story(base.BaseObject): status = None tags = None story_type_id = None + private = None tasks = tasks.TasksNestedManager comments = timeline.CommentsNestedManager