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:
authorJames Lopez <james@jameslopez.es>2016-11-15 18:25:37 +0300
committerJames Lopez <james@jameslopez.es>2016-11-17 10:22:59 +0300
commit633ddc9ed98c690c082c7347422ac85f9b592fb4 (patch)
tree10fdc47517922266814a8286a8f8c137432022f1 /app/controllers/projects/cycle_analytics
parentf93607a305346607f4296c266d40be1692febbec (diff)
fix authorization of builds and added relevant spec
Diffstat (limited to 'app/controllers/projects/cycle_analytics')
-rw-r--r--app/controllers/projects/cycle_analytics/events_controller.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/projects/cycle_analytics/events_controller.rb b/app/controllers/projects/cycle_analytics/events_controller.rb
index cc75dc247d3..cb52dfc830a 100644
--- a/app/controllers/projects/cycle_analytics/events_controller.rb
+++ b/app/controllers/projects/cycle_analytics/events_controller.rb
@@ -2,7 +2,7 @@ class Projects::CycleAnalytics::EventsController < Projects::ApplicationControll
include CycleAnalyticsParams
before_action :authorize_read_cycle_analytics!
- before_action :authorize_read_builds!, only: [:test, :staging]
+ before_action :authorize_builds!, only: [:test, :staging]
def issue
render_events(events.issue_events)
@@ -56,4 +56,8 @@ class Projects::CycleAnalytics::EventsController < Projects::ApplicationControll
params[:events].slice(:start_date, :branch_name)
end
+
+ def authorize_builds!
+ return access_denied! unless current_user.can?(:read_build, project)
+ end
end