mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-26 17:13:33 +00:00
fix(db): make paginated database reads always require "order" option (#39017)
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
@@ -1075,6 +1075,10 @@ type FindCommentsOptions struct {
|
||||
IsPull optional.Option[bool]
|
||||
}
|
||||
|
||||
func (opts FindCommentsOptions) ToOrders() string {
|
||||
return "id"
|
||||
}
|
||||
|
||||
// ToConds implements FindOptions interface
|
||||
func (opts FindCommentsOptions) ToConds() builder.Cond {
|
||||
cond := builder.NewCond()
|
||||
|
||||
Reference in New Issue
Block a user