Fix per-project counters for Dashboard filters

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2013-12-25 09:19:51 +02:00
parent f6a4e5636d
commit 1a2e11c891
No known key found for this signature in database
GPG Key ID: 627C5F589F467F17
4 changed files with 9 additions and 15 deletions

View File

@ -14,17 +14,11 @@ module DashboardHelper
end
def entities_per_project(project, entity)
items = project.items_for(entity)
items = case params[:status]
when 'closed'
items.closed
when 'all'
items
else
items.opened
end
items.cared(current_user).count
case entity.to_sym
when :issue then @issues.where(project_id: project.id)
when :merge_request then @merge_requests.where(target_project_id: project.id)
else
[]
end.count
end
end

View File

@ -6,7 +6,7 @@
Assigned to me
%li{class: ("active" if params[:scope] == 'authored')}
= link_to filter_path(entity, scope: 'authored') do
Authored by me
Created by me
%li{class: ("active" if params[:scope] == 'all')}
= link_to filter_path(entity, scope: 'all') do
All

View File

@ -34,7 +34,7 @@ class DashboardIssues < Spinach::FeatureSteps
step 'I click "Authored by me" link' do
within ".scope-filter" do
click_link 'Authored by me'
click_link 'Created by me'
end
end

View File

@ -34,7 +34,7 @@ class DashboardMergeRequests < Spinach::FeatureSteps
step 'I click "Authored by me" link' do
within ".scope-filter" do
click_link 'Authored by me'
click_link 'Created by me'
end
end