Fix filter not loadable because of missing param declaration
continuous-integration/drone/pr Build is passing Details

Signed-off-by: kolaente <k@knt.li>
This commit is contained in:
kolaente 2020-09-11 08:34:17 +02:00
parent ce18ff7f6d
commit 8ed5217b9f
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import (
// SavedFilter represents a saved bunch of filters
type SavedFilter struct {
// The unique numeric id of this saved filter
ID int64 `xorm:"autoincr not null unique pk" json:"id"`
ID int64 `xorm:"autoincr not null unique pk" json:"id" param:"filter"`
// The actual filters this filter contains
Filters *TaskCollection `xorm:"JSON not null" json:"filters"`
// The title of the filter.