Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
1a2e11c8
Commit
1a2e11c8
authored
Dec 25, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix per-project counters for Dashboard filters
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
f6a4e563
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
15 deletions
+9
-15
app/helpers/dashboard_helper.rb
app/helpers/dashboard_helper.rb
+6
-12
app/views/shared/_filter.html.haml
app/views/shared/_filter.html.haml
+1
-1
features/steps/dashboard/dashboard_issues.rb
features/steps/dashboard/dashboard_issues.rb
+1
-1
features/steps/dashboard/dashboard_merge_requests.rb
features/steps/dashboard/dashboard_merge_requests.rb
+1
-1
No files found.
app/helpers/dashboard_helper.rb
View file @
1a2e11c8
...
@@ -14,17 +14,11 @@ module DashboardHelper
...
@@ -14,17 +14,11 @@ module DashboardHelper
end
end
def
entities_per_project
(
project
,
entity
)
def
entities_per_project
(
project
,
entity
)
items
=
project
.
items_for
(
entity
)
case
entity
.
to_sym
when
:issue
then
@issues
.
where
(
project_id:
project
.
id
)
items
=
case
params
[
:status
]
when
:merge_request
then
@merge_requests
.
where
(
target_project_id:
project
.
id
)
when
'closed'
items
.
closed
when
'all'
items
else
else
items
.
opened
[]
end
end
.
count
items
.
cared
(
current_user
).
count
end
end
end
end
app/views/shared/_filter.html.haml
View file @
1a2e11c8
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
Assigned to me
Assigned to me
%li
{
class:
(
"active"
if
params
[
:scope
]
==
'authored'
)}
%li
{
class:
(
"active"
if
params
[
:scope
]
==
'authored'
)}
=
link_to
filter_path
(
entity
,
scope:
'authored'
)
do
=
link_to
filter_path
(
entity
,
scope:
'authored'
)
do
Author
ed by me
Creat
ed by me
%li
{
class:
(
"active"
if
params
[
:scope
]
==
'all'
)}
%li
{
class:
(
"active"
if
params
[
:scope
]
==
'all'
)}
=
link_to
filter_path
(
entity
,
scope:
'all'
)
do
=
link_to
filter_path
(
entity
,
scope:
'all'
)
do
All
All
...
...
features/steps/dashboard/dashboard_issues.rb
View file @
1a2e11c8
...
@@ -34,7 +34,7 @@ class DashboardIssues < Spinach::FeatureSteps
...
@@ -34,7 +34,7 @@ class DashboardIssues < Spinach::FeatureSteps
step
'I click "Authored by me" link'
do
step
'I click "Authored by me" link'
do
within
".scope-filter"
do
within
".scope-filter"
do
click_link
'
Author
ed by me'
click_link
'
Creat
ed by me'
end
end
end
end
...
...
features/steps/dashboard/dashboard_merge_requests.rb
View file @
1a2e11c8
...
@@ -34,7 +34,7 @@ class DashboardMergeRequests < Spinach::FeatureSteps
...
@@ -34,7 +34,7 @@ class DashboardMergeRequests < Spinach::FeatureSteps
step
'I click "Authored by me" link'
do
step
'I click "Authored by me" link'
do
within
".scope-filter"
do
within
".scope-filter"
do
click_link
'
Author
ed by me'
click_link
'
Creat
ed by me'
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment