Fix not able to make saved filters favorite
This commit is contained in:
@ -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 New Issue
Block a user