1
0

Fix not able to make saved filters favorite

This commit is contained in:
kolaente
2021-04-03 16:49:20 +02:00
parent 9b7eef985e
commit 0b8173c1c3
9 changed files with 131 additions and 24 deletions

View File

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

View File

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

View File

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