diff options
author | Thiago Avelino <thiago@avelino.xxx> | 2017-01-01 00:51:10 -0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-01-01 10:51:10 +0800 |
commit | 787fda53efc65916294caa6faf4aa8ecaf6cf86c (patch) | |
tree | 73fcabf10a76b18b0aa53d1dee0e40883a8d2586 /conf | |
parent | a09a3dcabb566785208edb0df85a76c0303d4d52 (diff) | |
download | gitea-787fda53efc65916294caa6faf4aa8ecaf6cf86c.tar.gz gitea-787fda53efc65916294caa6faf4aa8ecaf6cf86c.zip |
UI config to toggle whether user email shows up in Explore Users (#336)
* UI config to toggle whether user email shows up in Explore Users
* Recommendation made by @tboerger
https://github.com/go-gitea/gitea/pull/336/commits/66a1c59fe730eff019ce100673c6800cce7d102d#r94122732
* fixed typo, rename ShowUserEmailInExplore to ShowUserEmail
* Fixed typo merged conflict
* Hide email in the user profile page
if you are active ShowUserEmail
ref https://github.com/go-gitea/gitea/pull/336#issuecomment-269843725
* Please replace MustBool() with MustBool(true)
Diffstat (limited to 'conf')
-rw-r--r-- | conf/app.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/app.ini b/conf/app.ini index ab8e63fdcb..3bd0e8ea9c 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -57,6 +57,8 @@ FEED_MAX_COMMIT_NUM = 5 THEME_COLOR_META_TAG = `#6cc644` ; Max size of files to be displayed (defaults is 8MiB) MAX_DISPLAY_FILE_SIZE = 8388608 +; Whether show the user email in the Explore Users page +SHOW_USER_EMAIL = true [ui.admin] ; Number of users that are showed in one page |