mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 13:55:52 +01:00
Show visible spent time link for users allowed to view time entries (#20661).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@16292 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -101,6 +101,11 @@ class IssuesController < ApplicationController
|
||||
@changesets.reverse!
|
||||
end
|
||||
|
||||
if User.current.allowed_to?(:view_time_entries, @project)
|
||||
Issue.load_visible_spent_hours([@issue])
|
||||
Issue.load_visible_total_spent_hours([@issue])
|
||||
end
|
||||
|
||||
respond_to do |format|
|
||||
format.html {
|
||||
@allowed_statuses = @issue.new_statuses_allowed_to(User.current)
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
unless @issue.disabled_core_fields.include?('estimated_hours')
|
||||
rows.right l(:field_estimated_hours), issue_estimated_hours_details(@issue), :class => 'estimated-hours'
|
||||
end
|
||||
if User.current.allowed_to_view_all_time_entries?(@project)
|
||||
if User.current.allowed_to?(:view_time_entries, @project)
|
||||
if @issue.total_spent_hours > 0
|
||||
rows.right l(:label_spent_time), issue_spent_hours_details(@issue), :class => 'spent-time'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user