From c268c46f1e03e21145cf359534454b62705cd777 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 16 Feb 2018 12:09:58 -0500 Subject: [PATCH] mark FilterCriterion title as a mandatory field Change-Id: I0cefda369556817303e976d539c3187679792d73 Signed-off-by: Doug Hellmann --- storyboard/api/v1/wmodels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storyboard/api/v1/wmodels.py b/storyboard/api/v1/wmodels.py index af7ea2de..a588164d 100644 --- a/storyboard/api/v1/wmodels.py +++ b/storyboard/api/v1/wmodels.py @@ -521,7 +521,7 @@ class TaskStatus(base.APIBase): class FilterCriterion(base.APIBase): """Represents a filter used to construct an automatic worklist.""" - title = wtypes.text + title = wtypes.wsattr(wtypes.text, mandatory=True) """The title of the criterion, as displayed in the UI.""" filter_id = int