summaryrefslogtreecommitdiffstats
path: root/lib/redmine.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-04-25 05:32:58 +0000
committerGo MAEDA <maeda@farend.jp>2019-04-25 05:32:58 +0000
commit1ff42ec5bca0d4f6858b7b25bb7ccefdf6135a6a (patch)
tree5d596451e4f939d27143f2ea433b22c056c1548d /lib/redmine.rb
parent87033303842791bd1d070f0b9860f66fa1ab2d90 (diff)
downloadredmine-1ff42ec5bca0d4f6858b7b25bb7ccefdf6135a6a.tar.gz
redmine-1ff42ec5bca0d4f6858b7b25bb7ccefdf6135a6a.zip
New Permission: Edit own issue (#1248).
Patch by Yuichi HARADA. git-svn-id: http://svn.redmine.org/redmine/trunk@18081 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine.rb')
-rw-r--r--lib/redmine.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/redmine.rb b/lib/redmine.rb
index aa91a873f..45e9f1024 100644
--- a/lib/redmine.rb
+++ b/lib/redmine.rb
@@ -102,6 +102,7 @@ Redmine::AccessControl.map do |map|
:read => true
map.permission :add_issues, {:issues => [:new, :create], :attachments => :upload}
map.permission :edit_issues, {:issues => [:edit, :update, :bulk_edit, :bulk_update], :journals => [:new], :attachments => :upload}
+ map.permission :edit_own_issues, {:issues => [:edit, :update, :bulk_edit, :bulk_update], :journals => [:new], :attachments => :upload}
map.permission :copy_issues, {:issues => [:new, :create, :bulk_edit, :bulk_update], :attachments => :upload}
map.permission :manage_issue_relations, {:issue_relations => [:index, :show, :create, :destroy]}
map.permission :manage_subtasks, {}