summaryrefslogtreecommitdiff
path: root/app/models/cycle_analytics
diff options
context:
space:
mode:
authorMałgorzata Ksionek <mksionek@gitlab.com>2019-07-06 22:15:13 +0200
committerMałgorzata Ksionek <mksionek@gitlab.com>2019-07-23 12:01:39 +0200
commit1b102f5d119009575bda43bfc9b0ae8365f67c50 (patch)
tree2bcd75bed34aa6f11fef53db9984d4851d4ce1de /app/models/cycle_analytics
parentf4101aeac73368adcab223f14bf3d4d92d718b8b (diff)
downloadgitlab-ce-1b102f5d119009575bda43bfc9b0ae8365f67c50.tar.gz
Add basic project extraction
To allow project filtering Prepare summary for accepting multiple groups Modify deploys group summary class Add filtering by project name in issues summary Fix rubocop offences Add changelog entry Change name to id in project filtering Fix rebase problem Add project extraction
Diffstat (limited to 'app/models/cycle_analytics')
-rw-r--r--app/models/cycle_analytics/group_level.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/cycle_analytics/group_level.rb b/app/models/cycle_analytics/group_level.rb
index 508cde0ca00..b351ad82f95 100644
--- a/app/models/cycle_analytics/group_level.rb
+++ b/app/models/cycle_analytics/group_level.rb
@@ -13,7 +13,8 @@ module CycleAnalytics
def summary
@summary ||= ::Gitlab::CycleAnalytics::GroupStageSummary.new(group,
from: options[:from],
- current_user: options[:current_user]).data
+ current_user: options[:current_user],
+ options: options).data
end
def permissions(*)