diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-07-22 18:52:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-07-22 18:52:00 +0000 |
commit | 898fac293b3d8042de3c1747776fac90d3ed40fa (patch) | |
tree | 1060a3fe53e880892ebb78df12d5311bf14b54c7 /app/helpers/custom_fields_helper.rb | |
parent | 590a829a06d4106f7827ddf242a0de5c0ca3e197 (diff) | |
download | redmine-898fac293b3d8042de3c1747776fac90d3ed40fa.tar.gz redmine-898fac293b3d8042de3c1747776fac90d3ed40fa.zip |
Adds custom fields on time entries (#772).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1689 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/custom_fields_helper.rb')
-rw-r--r-- | app/helpers/custom_fields_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb index 3c795dc1f..f61824e65 100644 --- a/app/helpers/custom_fields_helper.rb +++ b/app/helpers/custom_fields_helper.rb @@ -19,6 +19,7 @@ module CustomFieldsHelper def custom_fields_tabs tabs = [{:name => 'IssueCustomField', :label => :label_issue_plural}, + {:name => 'TimeEntryCustomField', :label => :label_spent_time}, {:name => 'ProjectCustomField', :label => :label_project_plural}, {:name => 'UserCustomField', :label => :label_user_plural} ] |