Browse Source

Fixed: r4492 breaks the ability to select issue custom fields available for projects issues (#7121).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4529 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.1.0
Jean-Philippe Lang 13 years ago
parent
commit
df88dc117f
2 changed files with 6 additions and 2 deletions
  1. 2
    1
      app/models/project.rb
  2. 4
    1
      test/functional/projects_controller_test.rb

+ 2
- 1
app/models/project.rb View File

@@ -530,7 +530,8 @@ class Project < ActiveRecord::Base
'identifier',
'custom_field_values',
'custom_fields',
'tracker_ids'
'tracker_ids',
'issue_custom_field_ids'

# Returns an array of projects that are in this project's hierarchy
#

+ 4
- 1
test/functional/projects_controller_test.rb View File

@@ -152,7 +152,9 @@ class ProjectsControllerTest < ActionController::TestCase
:identifier => "blog",
:is_public => 1,
:custom_field_values => { '3' => 'Beta' },
:tracker_ids => ['1', '3']
:tracker_ids => ['1', '3'],
# an issue custom field that is not for all project
:issue_custom_field_ids => ['9']
}
assert_redirected_to '/projects/blog/settings'
@@ -165,6 +167,7 @@ class ProjectsControllerTest < ActionController::TestCase
assert_nil project.parent
assert_equal 'Beta', project.custom_value_for(3).value
assert_equal [1, 3], project.trackers.map(&:id).sort
assert project.issue_custom_fields.include?(IssueCustomField.find(9))
end
should "create a new subproject" do

Loading…
Cancel
Save