diff options
author | Mark Wells <mark@freeside.biz> | 2015-12-09 16:00:14 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-12-09 16:00:28 -0800 |
commit | 548b94eafa4bc90680e13f015445b6833b065c73 (patch) | |
tree | 7d8323efeb9fac22ea487bcfdc2adb8659cd15d6 /rt/share/html/Elements | |
parent | f263d9c5f3fa07442faadd9000aaad7275892f8e (diff) |
automatic creation of subtask tickets, #34061
Diffstat (limited to 'rt/share/html/Elements')
-rwxr-xr-x | rt/share/html/Elements/Tabs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rt/share/html/Elements/Tabs b/rt/share/html/Elements/Tabs index 46d2bd89d..920a3a096 100755 --- a/rt/share/html/Elements/Tabs +++ b/rt/share/html/Elements/Tabs @@ -305,6 +305,8 @@ my $build_admin_menu = sub { my $txn_cfs = $cfs->child( 'transactions' => title => loc('Transactions'), path => '/Admin/Queues/CustomFields.html?SubType=RT::Ticket-RT::Transaction&id='.$id ); + $queue->child( 'tasks' => title => loc('Subtasks'), path => "Admin/Queues/Tasks.html?Queue=".$id ); + $queue->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Queues/GroupRights.html?id=".$id ); $queue->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Queues/UserRights.html?id=" . $id ); $queue->child( 'history' => title => loc('History'), path => "/Admin/Queues/History.html?id=" . $id ); |