diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2009-10-21 22:34:22 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2009-10-21 22:34:22 +0000 |
commit | ac4937a76755de2f9b6a83f6160efa0fde2d03aa (patch) | |
tree | 611bf32cf6c377b65e3362583f4846e1f6a69210 /app/helpers | |
parent | 29ab7b4108cb45bc4efb44253419fa2e658ac3e9 (diff) | |
download | redmine-ac4937a76755de2f9b6a83f6160efa0fde2d03aa.tar.gz redmine-ac4937a76755de2f9b6a83f6160efa0fde2d03aa.zip |
Enumerations can now have custom fields defined on them. #4077
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2945 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/custom_fields_helper.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb index 6e99b6a7c..2545dd893 100644 --- a/app/helpers/custom_fields_helper.rb +++ b/app/helpers/custom_fields_helper.rb @@ -22,7 +22,10 @@ module CustomFieldsHelper {:name => 'TimeEntryCustomField', :partial => 'custom_fields/index', :label => :label_spent_time}, {:name => 'ProjectCustomField', :partial => 'custom_fields/index', :label => :label_project_plural}, {:name => 'UserCustomField', :partial => 'custom_fields/index', :label => :label_user_plural}, - {:name => 'GroupCustomField', :partial => 'custom_fields/index', :label => :label_group_plural} + {:name => 'GroupCustomField', :partial => 'custom_fields/index', :label => :label_group_plural}, + {:name => 'TimeEntryActivityCustomField', :label => TimeEntryActivity::OptionName}, + {:name => 'IssuePriorityCustomField', :label => IssuePriority::OptionName}, + {:name => 'DocumentCategoryCustomField', :label => DocumentCategory::OptionName} ] end |