Commit 0e913fbc authored by Jarka Kadlecova's avatar Jarka Kadlecova

Include opened state in the counts for epics

parent 5cf10e2f
...@@ -19,9 +19,12 @@ class EpicsFinder < IssuableFinder ...@@ -19,9 +19,12 @@ class EpicsFinder < IssuableFinder
execute.count execute.count
end end
# we don't have states for epics for now but need this method # we don't have states for epics for now but need counts for all and opened
def count_by_state def count_by_state
{ all: row_count } {
all: row_count,
opened: row_count
}
end end
def group def group
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment