Merge pull request #11576 from flopp999/patch-3

change default annotation limit from 10 to 100 when querying api
This commit is contained in:
Marcus Efraimsson 2018-04-13 10:55:01 +02:00 committed by GitHub
commit 167d5aebe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -202,7 +202,7 @@ func (r *SqlAnnotationRepo) Find(query *annotations.ItemQuery) ([]*annotations.I
}
if query.Limit == 0 {
query.Limit = 10
query.Limit = 100
}
sql.WriteString(fmt.Sprintf(" ORDER BY epoch DESC LIMIT %v", query.Limit))