mark FilterCriterion title as a mandatory field

Change-Id: I0cefda369556817303e976d539c3187679792d73
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-02-16 12:09:58 -05:00 committed by Jeremy Stanley
parent 91177dd915
commit c268c46f1e
1 changed files with 1 additions and 1 deletions

View File

@ -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