diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-12-30 09:57:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-30 01:57:38 +0000 |
commit | cd1b5488a31ff208b511302905330499167faa10 (patch) | |
tree | fa13e9950c7fc3400412bd2b21a432d40e29e727 /models/user | |
parent | 1dbf0d7f0822c10b379a21c192c2d63e34fd52f9 (diff) | |
download | gitea-cd1b5488a31ff208b511302905330499167faa10.tar.gz gitea-cd1b5488a31ff208b511302905330499167faa10.zip |
Refactor pagination (#33037)
I am sure the simple approach should work, let's try it in 1.24
Follow #29834 and #29841
Diffstat (limited to 'models/user')
-rw-r--r-- | models/user/search.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/models/user/search.go b/models/user/search.go index 6af3389237..85915f4020 100644 --- a/models/user/search.go +++ b/models/user/search.go @@ -39,8 +39,6 @@ type SearchUserOptions struct { IsTwoFactorEnabled optional.Option[bool] IsProhibitLogin optional.Option[bool] IncludeReserved bool - - ExtraParamStrings map[string]string } func (opts *SearchUserOptions) toSearchQueryBase(ctx context.Context) *xorm.Session { |