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/controllers/concerns/analytics/cycle_analytics/value_stream_actions.rb')
-rw-r--r--app/controllers/concerns/analytics/cycle_analytics/value_stream_actions.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/concerns/analytics/cycle_analytics/value_stream_actions.rb b/app/controllers/concerns/analytics/cycle_analytics/value_stream_actions.rb
index f10b23d1664..cf0430307a3 100644
--- a/app/controllers/concerns/analytics/cycle_analytics/value_stream_actions.rb
+++ b/app/controllers/concerns/analytics/cycle_analytics/value_stream_actions.rb
@@ -7,6 +7,9 @@ module Analytics
included do
before_action :authorize
+ # Defining the before action here, because in the EE module we cannot define a before_action.
+ # Reason: this is a module which is being included into a controller. This module is extended in EE.
+ before_action :authorize_modification, only: %i[create destroy update] # rubocop:disable Rails/LexicallyScopedActionFilter
end
def index
@@ -25,6 +28,10 @@ module Analytics
def authorize
authorize_read_cycle_analytics!
end
+
+ def authorize_modification
+ # no-op, overridden in EE
+ end
end
end
end