diff options
author | Mark Wells <mark@freeside.biz> | 2016-11-27 16:43:19 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-11-27 16:43:19 -0800 |
commit | 34e42c0d926bf569ceaf8da784c2569bc7f83cec (patch) | |
tree | 9ad08eca35d56bc00ac3545ff2220d32673adfcd /rt/lib/RT/System.pm | |
parent | 7fe7e453b6eb0778235e0a64e3b654f673d1caa2 (diff) |
add RT ACL for bulk updating tickets, #72964
Diffstat (limited to 'rt/lib/RT/System.pm')
-rw-r--r-- | rt/lib/RT/System.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rt/lib/RT/System.pm b/rt/lib/RT/System.pm index 456223878..3bc36c3f4 100644 --- a/rt/lib/RT/System.pm +++ b/rt/lib/RT/System.pm @@ -86,6 +86,8 @@ our $RIGHTS = { LoadSavedSearch => "Allow loading of saved searches", # loc_pair CreateSavedSearch => "Allow creation of saved searches", # loc_pair ExecuteCode => "Allow writing Perl code in templates, scrips, etc", # loc_pair + #freeside + BulkUpdateTickets => "Bulk update tickets", }; our $RIGHT_CATEGORIES = { @@ -98,6 +100,8 @@ our $RIGHT_CATEGORIES = { LoadSavedSearch => 'General', CreateSavedSearch => 'General', ExecuteCode => 'Admin', + #freeside + BulkUpdateTickets => 'Staff', }; # Tell RT::ACE that this sort of object can get acls granted |