Commit 1fa938eb authored by Nathan Friend's avatar Nathan Friend Committed by Andrew Fontaine

Enable deployment frequency graphs by default

This commit updates the `deployment_frequency_charts` feature flag to be
enabled by default.
parent c38014d1
......@@ -6,7 +6,7 @@ module EE
override :should_render_deployment_frequency_charts
def should_render_deployment_frequency_charts
return false unless ::Feature.enabled?(:deployment_frequency_charts, @project)
return false unless ::Feature.enabled?(:deployment_frequency_charts, @project, default_enabled: true)
return false unless @project.feature_available?(:project_activity_analytics)
can?(current_user, :read_project_activity_analytics, @project)
......
---
title: Add deployment frequency charts to CI/CD Analytics page
merge_request: 51338
author:
type: added
......@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/296893
milestone: '13.8'
type: development
group: group::release
default_enabled: false
default_enabled: true
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