Merge "mark FilterCriterion title as a mandatory field"

This commit is contained in:
Zuul 2018-06-25 19:15:58 +00:00 committed by Gerrit Code Review
commit 182906c2d8
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