summaryrefslogtreecommitdiffstats
path: root/models/db/list.go
Commit message (Collapse)AuthorAgeFilesLines
* Fix joins in `db.Find(AndCount)` (#28978)KN4CK3R2024-01-301-11/+21
|
* Move more functions to db.Find (#28419)Lunny Xiao2024-01-151-30/+31
| | | | | | | | | Following #28220 This PR move more functions to use `db.Find`. --------- Co-authored-by: delvh <dev.lh@web.de>
* Use db.Find instead of writing methods for every object (#28084)Lunny Xiao2023-11-241-14/+66
| | | | For those simple objects, it's unnecessary to write the find and count methods again and again.
* Fix db.Find bug (#23115)Lunny Xiao2023-02-241-0/+152
Caused by #20821 Fix #23110