From: Jean-Philippe Lang Date: Sat, 11 Apr 2015 07:54:20 +0000 (+0000) Subject: "Required" and "Read-only" rules on "Fields Permissions" screen are not colored ... X-Git-Tag: 3.1.0~167 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b474ad67de5aa50489fedc136358563ea5eba324;p=redmine.git "Required" and "Read-only" rules on "Fields Permissions" screen are not colored (#19580). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@14160 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/workflows/permissions.html.erb b/app/views/workflows/permissions.html.erb index 7b4b3f840..03740214d 100644 --- a/app/views/workflows/permissions.html.erb +++ b/app/views/workflows/permissions.html.erb @@ -65,7 +65,7 @@ <%= name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> <% for status in @statuses -%> - + <%= field_permission_tag(@permissions, status, field, @roles) %> <% unless status == @statuses.last %>»<% end %> diff --git a/test/functional/workflows_controller_test.rb b/test/functional/workflows_controller_test.rb index 85e0a1cf5..d59614aea 100644 --- a/test/functional/workflows_controller_test.rb +++ b/test/functional/workflows_controller_test.rb @@ -257,6 +257,15 @@ class WorkflowsControllerTest < ActionController::TestCase assert_equal IssueStatus.sorted.to_a, assigns(:statuses) end + def test_get_permissions_should_set_css_class + WorkflowPermission.delete_all + WorkflowPermission.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :field_name => 'assigned_to_id', :rule => 'required') + + get :permissions, :role_id => 1, :tracker_id => 2 + assert_response :success + assert_select 'td.required > select[name=?]', 'permissions[1][assigned_to_id]' + end + def test_post_permissions WorkflowPermission.delete_all