Fix not able to make saved filters favorite
This commit is contained in:
parent
9b7eef985e
commit
0b8173c1c3
9 changed files with 131 additions and 24 deletions
|
|
@ -7770,6 +7770,10 @@ var doc = `{
|
|||
"description": "The unique numeric id of this saved filter",
|
||||
"type": "integer"
|
||||
},
|
||||
"is_favorite": {
|
||||
"description": "True if the filter is a favorite. Favorite filters show up in a separate namespace together with favorite lists.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"owner": {
|
||||
"description": "The user who owns this filter",
|
||||
"$ref": "#/definitions/user.User"
|
||||
|
|
|
|||
|
|
@ -7753,6 +7753,10 @@
|
|||
"description": "The unique numeric id of this saved filter",
|
||||
"type": "integer"
|
||||
},
|
||||
"is_favorite": {
|
||||
"description": "True if the filter is a favorite. Favorite filters show up in a separate namespace together with favorite lists.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"owner": {
|
||||
"description": "The user who owns this filter",
|
||||
"$ref": "#/definitions/user.User"
|
||||
|
|
|
|||
|
|
@ -524,6 +524,9 @@ definitions:
|
|||
id:
|
||||
description: The unique numeric id of this saved filter
|
||||
type: integer
|
||||
is_favorite:
|
||||
description: True if the filter is a favorite. Favorite filters show up in a separate namespace together with favorite lists.
|
||||
type: boolean
|
||||
owner:
|
||||
$ref: '#/definitions/user.User'
|
||||
description: The user who owns this filter
|
||||
|
|
|
|||
Reference in a new issue