Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/finders/ci/daily_build_group_report_results_finder.rb')
-rw-r--r--app/finders/ci/daily_build_group_report_results_finder.rb20
1 files changed, 12 insertions, 8 deletions
diff --git a/app/finders/ci/daily_build_group_report_results_finder.rb b/app/finders/ci/daily_build_group_report_results_finder.rb
index 3c3c24c1479..774f08d1ff2 100644
--- a/app/finders/ci/daily_build_group_report_results_finder.rb
+++ b/app/finders/ci/daily_build_group_report_results_finder.rb
@@ -14,21 +14,25 @@ module Ci
end
def execute
- return none unless can?(current_user, :download_code, project)
+ return none unless can?(current_user, :read_build_report_results, project)
Ci::DailyBuildGroupReportResult.recent_results(
- {
- project_id: project,
- ref_path: ref_path,
- date: start_date..end_date
- },
- limit: @limit
+ query_params,
+ limit: limit
)
end
private
- attr_reader :current_user, :project, :ref_path, :start_date, :end_date
+ attr_reader :current_user, :project, :ref_path, :start_date, :end_date, :limit
+
+ def query_params
+ {
+ project_id: project,
+ ref_path: ref_path,
+ date: start_date..end_date
+ }
+ end
def none
Ci::DailyBuildGroupReportResult.none