]> source.dussan.org Git - gitea.git/commit
Add user status filter to admin user management page (#16770)
authorwxiaoguang <wxiaoguang@gmail.com>
Tue, 12 Oct 2021 18:11:35 +0000 (02:11 +0800)
committerGitHub <noreply@github.com>
Tue, 12 Oct 2021 18:11:35 +0000 (20:11 +0200)
commit7bcbdd07072d375eb9f24a64a047879ae2aa7aed
tree39ec57de914d4ccb05395ee991b94f6bca90dedb
parentd0a681fbc3fb626adcddbbb13f8c96c0bbd72c02
Add user status filter to admin user management page (#16770)

It makes Admin's life easier to filter users by various status.

* introduce window.config.PageData to pass template data to javascript module and small refactor

move legacy window.ActivityTopAuthors to window.config.PageData.ActivityTopAuthors
make HTML structure more IDE-friendly in footer.tmpl and head.tmpl
remove incorrect <style class="list-search-style"></style> in head.tmpl
use log.Error instead of log.Critical in admin user search

* use LEFT JOIN instead of SubQuery when admin filters users by 2fa. revert non-en locale.

* use OptionalBool instead of status map

* refactor SearchUserOptions.toConds to SearchUserOptions.toSearchQueryBase

* add unit test for user search

* only allow admin to use filters to search users
17 files changed:
.eslintrc
models/fixtures/user.yml
models/user.go
models/user_test.go
modules/context/context.go
modules/templates/helper.go
modules/util/util.go
modules/util/util_test.go
options/locale/locale_en-US.ini
routers/web/admin/users.go
routers/web/explore/user.go
templates/admin/base/search.tmpl
templates/admin/user/list.tmpl
templates/base/footer.tmpl
templates/base/head.tmpl
web_src/js/features/admin-users.js [new file with mode: 0644]
web_src/js/index.js