mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 01:34:25 +00:00
dd30d9d5c0
The function `GetByBean` has an obvious defect that when the fields are empty values, it will be ignored. Then users will get a wrong result which is possibly used to make a security problem. To avoid the possibility, this PR removed function `GetByBean` and all references. And some new generic functions have been introduced to be used. The recommand usage like below. ```go // if query an object according id obj, err := db.GetByID[Object](ctx, id) // query with other conditions obj, err := db.Get[Object](ctx, builder.Eq{"a": a, "b":b}) ``` |
||
---|---|---|
.. | ||
cherry_pick.go | ||
commit.go | ||
content_test.go | ||
content.go | ||
diff_test.go | ||
diff.go | ||
file_test.go | ||
file.go | ||
patch.go | ||
temp_repo.go | ||
tree_test.go | ||
tree.go | ||
update.go | ||
upload.go |