diff options
author | guillep2k <18600385+guillep2k@users.noreply.github.com> | 2019-08-24 09:28:59 -0300 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2019-08-24 15:28:59 +0300 |
commit | e3115cc019211fa2549f6943d379bf58fe7b7d7d (patch) | |
tree | 050115e3cdf4e0334d081459312f711e55f4ea86 /custom/conf/app.ini.sample | |
parent | f83db078f0603c775cd1b1bb016f996b65a04835 (diff) | |
download | gitea-e3115cc019211fa2549f6943d379bf58fe7b7d7d.tar.gz gitea-e3115cc019211fa2549f6943d379bf58fe7b7d7d.zip |
Add support for DEFAULT_ORG_MEMBER_VISIBLE (#7669)
* Add support for DEFAULT_ORG_MEMBER_VISIBLE
* Correct formatting
* Improved description in cheat sheet.
* Add test for DefaultOrgMemberVisible
* Remove dead code
Diffstat (limited to 'custom/conf/app.ini.sample')
-rw-r--r-- | custom/conf/app.ini.sample | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/custom/conf/app.ini.sample b/custom/conf/app.ini.sample index f2763e44df..a2842c56b4 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -405,6 +405,9 @@ DEFAULT_ALLOW_CREATE_ORGANIZATION = true ; Private is only for member of the organization ; Public is for everyone DEFAULT_ORG_VISIBILITY = public +; Default value for DefaultOrgMemberVisible +; True will make the membership of the users visible when added to the organisation +DEFAULT_ORG_MEMBER_VISIBLE = false ; Default value for EnableDependencies ; Repositories will use dependencies by default depending on this setting DEFAULT_ENABLE_DEPENDENCIES = true |