From 6e4e1050d9dba2b7b2523fdd1768823ab85feef4 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 20 Aug 2020 18:42:06 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-3-stable-ee --- doc/administration/feature_flags.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/administration/feature_flags.md') diff --git a/doc/administration/feature_flags.md b/doc/administration/feature_flags.md index 678ab6c5d7b..7cc7692975a 100644 --- a/doc/administration/feature_flags.md +++ b/doc/administration/feature_flags.md @@ -103,10 +103,10 @@ Some feature flags can be enabled or disabled on a per project basis: Feature.enable(:, Project.find()) ``` -For example, to enable the [`:junit_pipeline_view`](../ci/junit_test_reports.md#enabling-the-junit-test-reports-feature-core-only) feature flag for project `1234`: +For example, to enable the [`:product_analytics`](../operations/product_analytics.md#enable-or-disable-product-analytics) feature flag for project `1234`: ```ruby -Feature.enable(:junit_pipeline_view, Project.find(1234)) +Feature.enable(:product_analytics, Project.find(1234)) ``` `Feature.enable` and `Feature.disable` always return `nil`, this is not an indication that the command failed: -- cgit v1.2.1