Fixed: log time form not displayed on issue edit with :log_time permission only (#9405).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7924 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
398b700e57
commit
e21f60d170
|
@ -15,7 +15,7 @@
|
||||||
<%= render :partial => (@edit_allowed ? 'form' : 'form_update'), :locals => {:f => f} %>
|
<%= render :partial => (@edit_allowed ? 'form' : 'form_update'), :locals => {:f => f} %>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if authorize_for('timelog', 'edit') %>
|
<% if User.current.allowed_to?(:log_time, @project) %>
|
||||||
<fieldset class="tabular"><legend><%= l(:button_log_time) %></legend>
|
<fieldset class="tabular"><legend><%= l(:button_log_time) %></legend>
|
||||||
<% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %>
|
<% fields_for :time_entry, @time_entry, { :builder => TabularFormBuilder, :lang => current_language} do |time_entry| %>
|
||||||
<div class="splitcontentleft">
|
<div class="splitcontentleft">
|
||||||
|
|
|
@ -1195,6 +1195,22 @@ class IssuesControllerTest < ActionController::TestCase
|
||||||
:parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} }
|
:parent => {:tag => 'select', :attributes => {:id => 'issue_priority_id'} }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_get_edit_should_display_the_time_entry_form_with_log_time_permission
|
||||||
|
@request.session[:user_id] = 2
|
||||||
|
Role.find_by_name('Manager').update_attribute :permissions, [:view_issues, :edit_issues, :log_time]
|
||||||
|
|
||||||
|
get :edit, :id => 1
|
||||||
|
assert_tag 'input', :attributes => {:name => 'time_entry[hours]'}
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_get_edit_should_not_display_the_time_entry_form_without_log_time_permission
|
||||||
|
@request.session[:user_id] = 2
|
||||||
|
Role.find_by_name('Manager').remove_permission! :log_time
|
||||||
|
|
||||||
|
get :edit, :id => 1
|
||||||
|
assert_no_tag 'input', :attributes => {:name => 'time_entry[hours]'}
|
||||||
|
end
|
||||||
|
|
||||||
def test_get_edit_with_params
|
def test_get_edit_with_params
|
||||||
@request.session[:user_id] = 2
|
@request.session[:user_id] = 2
|
||||||
get :edit, :id => 1, :issue => { :status_id => 5, :priority_id => 7 },
|
get :edit, :id => 1, :issue => { :status_id => 5, :priority_id => 7 },
|
||||||
|
|
Loading…
Reference in New Issue