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
execute.count
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
{ all: row_count }
{
all: row_count,
opened: row_count
}
end
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