diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-15 13:23:13 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-04-15 13:23:13 +0000 |
commit | f16cddd57ae87b820d24dd378ef036c52a4f15d4 (patch) | |
tree | c99481dd328c4cf9868af6422278ab8bd4bccede /app/models/role.rb | |
parent | 37205a8991920e3bc403f52711308878fea05553 (diff) | |
download | redmine-f16cddd57ae87b820d24dd378ef036c52a4f15d4.tar.gz redmine-f16cddd57ae87b820d24dd378ef036c52a4f15d4.zip |
Private issues (#7414).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5466 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/role.rb')
-rw-r--r-- | app/models/role.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/role.rb b/app/models/role.rb index 38edd360d..c11111c0a 100644 --- a/app/models/role.rb +++ b/app/models/role.rb @@ -21,7 +21,8 @@ class Role < ActiveRecord::Base BUILTIN_ANONYMOUS = 2 ISSUES_VISIBILITY_OPTIONS = [ - ['default', :label_issues_visibility_all], + ['all', :label_issues_visibility_all], + ['default', :label_issues_visibility_public], ['own', :label_issues_visibility_own] ] |