Commit beb49072 authored by Martin Wortschack's avatar Martin Wortschack

Merge branch 'add-group-to-vsa-path-ff' into 'master'

Add group to VSA path FF

See merge request gitlab-org/gitlab!32409
parents 88c47227 613361fd
......@@ -9,7 +9,7 @@ class Analytics::CycleAnalyticsController < Analytics::ApplicationController
before_action do
push_frontend_feature_flag(:cycle_analytics_scatterplot_enabled, default_enabled: true)
push_frontend_feature_flag(:cycle_analytics_scatterplot_median_enabled, default_enabled: true)
push_frontend_feature_flag(:value_stream_analytics_path_navigation)
push_frontend_feature_flag(:value_stream_analytics_path_navigation, @group)
end
before_action :load_group, only: :show
......
......@@ -11,7 +11,7 @@ class Groups::Analytics::CycleAnalyticsController < Groups::Analytics::Applicati
before_action do
push_frontend_feature_flag(:cycle_analytics_scatterplot_enabled, default_enabled: true)
push_frontend_feature_flag(:cycle_analytics_scatterplot_median_enabled, default_enabled: true)
push_frontend_feature_flag(:value_stream_analytics_path_navigation)
push_frontend_feature_flag(:value_stream_analytics_path_navigation, @group)
end
before_action :load_group, only: :show
......
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