Commit 10daf1d6 by Torkel Ödegaard

Revert "Enable the "limit" param in /api/search"

This reverts commit 3d776851.
parent 23aa614b
...@@ -44,7 +44,6 @@ func searchHandler(query *Query) error { ...@@ -44,7 +44,6 @@ func searchHandler(query *Query) error {
IsStarred: query.IsStarred, IsStarred: query.IsStarred,
OrgId: query.OrgId, OrgId: query.OrgId,
DashboardIds: query.DashboardIds, DashboardIds: query.DashboardIds,
Limit: query.Limit,
} }
if err := bus.Dispatch(&dashQuery); err != nil { if err := bus.Dispatch(&dashQuery); err != nil {
......
...@@ -42,7 +42,6 @@ type FindPersistedDashboardsQuery struct { ...@@ -42,7 +42,6 @@ type FindPersistedDashboardsQuery struct {
UserId int64 UserId int64
IsStarred bool IsStarred bool
DashboardIds []int DashboardIds []int
Limit int
Result HitList Result HitList
} }
...@@ -123,11 +123,6 @@ type DashboardSearchProjection struct { ...@@ -123,11 +123,6 @@ type DashboardSearchProjection struct {
} }
func SearchDashboards(query *search.FindPersistedDashboardsQuery) error { func SearchDashboards(query *search.FindPersistedDashboardsQuery) error {
limit := query.Limit
if limit == 0 {
limit = 1000
}
var sql bytes.Buffer var sql bytes.Buffer
params := make([]interface{}, 0) params := make([]interface{}, 0)
...@@ -170,8 +165,7 @@ func SearchDashboards(query *search.FindPersistedDashboardsQuery) error { ...@@ -170,8 +165,7 @@ func SearchDashboards(query *search.FindPersistedDashboardsQuery) error {
params = append(params, "%"+query.Title+"%") params = append(params, "%"+query.Title+"%")
} }
sql.WriteString(fmt.Sprintf(" ORDER BY dashboard.title ASC LIMIT ?")) sql.WriteString(fmt.Sprintf(" ORDER BY dashboard.title ASC LIMIT 1000"))
params = append(params, limit)
var res []DashboardSearchProjection var res []DashboardSearchProjection
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment